diff options
author | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-12 18:34:55 +0200 |
---|---|---|
committer | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-12 18:34:55 +0200 |
commit | 3a82d5f45ffed16d654220efa92ef6b75ea3163b (patch) | |
tree | 8ab6550e7afa428240b105e77d2e204713eb257c /pyload/plugin/crypter | |
parent | fix, fix and more fixes (diff) | |
download | pyload-3a82d5f45ffed16d654220efa92ef6b75ea3163b.tar.xz |
import fixes + code-cleanup
Diffstat (limited to 'pyload/plugin/crypter')
-rw-r--r-- | pyload/plugin/crypter/NCryptIn.py | 2 | ||||
-rw-r--r-- | pyload/plugin/crypter/SafelinkingNet.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugin/crypter/NCryptIn.py b/pyload/plugin/crypter/NCryptIn.py index a7f1b0bb9..02427190e 100644 --- a/pyload/plugin/crypter/NCryptIn.py +++ b/pyload/plugin/crypter/NCryptIn.py @@ -6,7 +6,7 @@ import re from Crypto.Cipher import AES from pyload.plugin.Crypter import Crypter -from pyload.plugin.captcha import ReCaptcha +from pyload.plugin.captcha.ReCaptcha import ReCaptcha class NCryptIn(Crypter): diff --git a/pyload/plugin/crypter/SafelinkingNet.py b/pyload/plugin/crypter/SafelinkingNet.py index 720766d22..a949d17b1 100644 --- a/pyload/plugin/crypter/SafelinkingNet.py +++ b/pyload/plugin/crypter/SafelinkingNet.py @@ -6,7 +6,7 @@ from BeautifulSoup import BeautifulSoup from pyload.utils import json_loads from pyload.plugin.Crypter import Crypter -from pyload.plugin.captcha import SolveMedia +from pyload.plugin.captcha.SolveMedia import SolveMedia class SafelinkingNet(Crypter): |