summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/CzshareComFolder.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-12-14 16:16:10 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-12-27 21:20:55 +0100
commitb8387e72fd3e679db00e03ebd3e3863bfbe8584a (patch)
tree71ae1fa66d8e0e24a4dd6d4edda118b8a673e8ef /module/plugins/crypter/CzshareComFolder.py
parent[accounts] Strict comparison for numbers (diff)
downloadpyload-b8387e72fd3e679db00e03ebd3e3863bfbe8584a.tar.xz
[crypters] Remove create_getInfo + minor code cosmetics (w/ strict comparison for numbers)
Diffstat (limited to 'module/plugins/crypter/CzshareComFolder.py')
-rw-r--r--module/plugins/crypter/CzshareComFolder.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/crypter/CzshareComFolder.py b/module/plugins/crypter/CzshareComFolder.py
index c6cf0d3a7..f69cf4d07 100644
--- a/module/plugins/crypter/CzshareComFolder.py
+++ b/module/plugins/crypter/CzshareComFolder.py
@@ -2,7 +2,7 @@
import re
-from module.plugins.internal.Crypter import Crypter, create_getInfo
+from module.plugins.internal.Crypter import Crypter
class CzshareComFolder(Crypter):
@@ -34,6 +34,3 @@ class CzshareComFolder(Crypter):
self.error(_("FOLDER_PATTERN not found"))
self.links.extend(re.findall(self.LINK_PATTERN, m.group(1)))
-
-
-getInfo = create_getInfo(CzshareComFolder)