summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/HflixIn.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-12-27 20:02:56 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-12-27 22:51:59 +0100
commit8bdab50e6f0f7b01ba5c423aefee1a444589de4a (patch)
treea4a59d8b7b953be5732d696490428a633db711a1 /module/plugins/crypter/HflixIn.py
parent[Crypter] Simplify _create_packages routine (diff)
downloadpyload-8bdab50e6f0f7b01ba5c423aefee1a444589de4a.tar.xz
Update crypters and containers
Diffstat (limited to 'module/plugins/crypter/HflixIn.py')
-rw-r--r--module/plugins/crypter/HflixIn.py15
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")]