diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-06-05 18:01:09 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-06-05 18:01:09 +0200 |
commit | c4ad9519c117edfdc59f229380fa0797bc6bfffa (patch) | |
tree | fad195fa22f3c9181e76e9002a6fcbd11574fbd9 | |
parent | Update FilestubeCom.py (diff) | |
download | pyload-c4ad9519c117edfdc59f229380fa0797bc6bfffa.tar.xz |
Update BitshareComFolder.py
-rw-r--r-- | module/plugins/crypter/BitshareComFolder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/BitshareComFolder.py b/module/plugins/crypter/BitshareComFolder.py index 256c5b5aa..f0dd9e570 100644 --- a/module/plugins/crypter/BitshareComFolder.py +++ b/module/plugins/crypter/BitshareComFolder.py @@ -6,7 +6,7 @@ from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo class BitshareComFolder(SimpleCrypter): __name__ = "BitshareComFolder" __type__ = "crypter" - __version__ = "0.03" + __version__ = "0.04" __pattern__ = r'http://(?:www\.)?bitshare\.com/\?d=\w+' __config__ = [("use_premium" , "bool", "Use premium account if available" , True), @@ -19,7 +19,7 @@ class BitshareComFolder(SimpleCrypter): LINK_PATTERN = r'<a href="(http://bitshare\.com/files/.+)">.+</a></td>' - NAME_PATTERN = r'View public folder "(?P<N>.+)"</h1>' + NAME_PATTERN = r'View public folder "(?P<N>.+?)"</h1>' getInfo = create_getInfo(BitshareComFolder) |