diff options
Diffstat (limited to 'pyload/plugins/crypter/LixIn.py')
-rw-r--r-- | pyload/plugins/crypter/LixIn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/crypter/LixIn.py b/pyload/plugins/crypter/LixIn.py index 84f340d44..ef02c5060 100644 --- a/pyload/plugins/crypter/LixIn.py +++ b/pyload/plugins/crypter/LixIn.py @@ -22,7 +22,7 @@ class LixIn(Crypter): def decrypt(self, pyfile): url = pyfile.url - matches = re.search(self.__pattern__, url) + matches = re.match(self.__pattern__, url) if not matches: self.fail("couldn't identify file id") |