diff options
author | 2015-12-27 20:02:56 +0100 | |
---|---|---|
committer | 2015-12-27 22:51:59 +0100 | |
commit | 8bdab50e6f0f7b01ba5c423aefee1a444589de4a (patch) | |
tree | a4a59d8b7b953be5732d696490428a633db711a1 /module/plugins/crypter/HflixIn.py | |
parent | [Crypter] Simplify _create_packages routine (diff) | |
download | pyload-8bdab50e6f0f7b01ba5c423aefee1a444589de4a.tar.xz |
Update crypters and containers
Diffstat (limited to 'module/plugins/crypter/HflixIn.py')
-rw-r--r-- | module/plugins/crypter/HflixIn.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/module/plugins/crypter/HflixIn.py b/module/plugins/crypter/HflixIn.py index f0bcd7d3a..ebb140353 100644 --- a/module/plugins/crypter/HflixIn.py +++ b/module/plugins/crypter/HflixIn.py @@ -2,17 +2,18 @@ import re -from module.plugins.internal.Crypter import Crypter +from module.plugins.internal.SimpleCrypter import SimpleCrypter -class HflixIn(Crypter): - __name__ = "HflixIn" - __type__ = "crypter" - __version__ = "0.1" + +class HflixIn(SimpleCrypter): + __name__ = "HflixIn" + __type__ = "crypter" + __version__ = "0.11" __status__ = "testing" - __pattern__ = r"http://hflix.in/\w{5}" + __pattern__ = r'http://(www\.)?hflix\.in/\w+' - __description__ = """Hflix.in Decrypter Plugin""" + __description__ = """Hflix.in decrypter plugin""" __license__ = "GPLv3" __authors__ = [("GammaC0de", "nitzo2001[AT]yahoo[DOT]com")] |