diff options
author | 2015-12-14 16:16:10 +0100 | |
---|---|---|
committer | 2015-12-27 21:20:55 +0100 | |
commit | b8387e72fd3e679db00e03ebd3e3863bfbe8584a (patch) | |
tree | 71ae1fa66d8e0e24a4dd6d4edda118b8a673e8ef /module/plugins/crypter/BitshareComFolder.py | |
parent | [accounts] Strict comparison for numbers (diff) | |
download | pyload-b8387e72fd3e679db00e03ebd3e3863bfbe8584a.tar.xz |
[crypters] Remove create_getInfo + minor code cosmetics (w/ strict comparison for numbers)
Diffstat (limited to 'module/plugins/crypter/BitshareComFolder.py')
-rw-r--r-- | module/plugins/crypter/BitshareComFolder.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/crypter/BitshareComFolder.py b/module/plugins/crypter/BitshareComFolder.py index 959be9772..cc722fe3e 100644 --- a/module/plugins/crypter/BitshareComFolder.py +++ b/module/plugins/crypter/BitshareComFolder.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo +from module.plugins.internal.SimpleCrypter import SimpleCrypter class BitshareComFolder(SimpleCrypter): @@ -23,6 +23,3 @@ class BitshareComFolder(SimpleCrypter): LINK_PATTERN = r'<a href="(http://bitshare\.com/files/.+)">.+</a></td>' NAME_PATTERN = r'View public folder "(?P<N>.+?)"</h1>' - - -getInfo = create_getInfo(BitshareComFolder) |