diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-12 23:42:37 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-12 23:42:37 +0100 |
commit | 7b3c33d5231ca6b46619cfedaf1769fbe91aa76c (patch) | |
tree | e5d67dec2e12c2e6b2aef0f488827270d0299403 /pyload/plugins/account | |
parent | Move InitHomeDir to pyload __init__ (diff) | |
download | pyload-7b3c33d5231ca6b46619cfedaf1769fbe91aa76c.tar.xz |
Use empty string when missing author email
Diffstat (limited to 'pyload/plugins/account')
-rw-r--r-- | pyload/plugins/account/BitshareCom.py | 2 | ||||
-rw-r--r-- | pyload/plugins/account/CatShareNet.py | 2 | ||||
-rw-r--r-- | pyload/plugins/account/RapiduNet.py | 2 | ||||
-rw-r--r-- | pyload/plugins/account/RyushareCom.py | 2 | ||||
-rw-r--r-- | pyload/plugins/account/UlozTo.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/pyload/plugins/account/BitshareCom.py b/pyload/plugins/account/BitshareCom.py index cf0098b4f..c0fc55c2d 100644 --- a/pyload/plugins/account/BitshareCom.py +++ b/pyload/plugins/account/BitshareCom.py @@ -10,7 +10,7 @@ class BitshareCom(Account): __description = """Bitshare account plugin""" __license = "GPLv3" - __authors = [("Paul King", None)] + __authors = [("Paul King", "")] def loadAccountInfo(self, user, req): diff --git a/pyload/plugins/account/CatShareNet.py b/pyload/plugins/account/CatShareNet.py index 28fb8fe3d..2df503991 100644 --- a/pyload/plugins/account/CatShareNet.py +++ b/pyload/plugins/account/CatShareNet.py @@ -14,7 +14,7 @@ class CatShareNet(Account): __description = """CatShareNet account plugin""" __license = "GPLv3" - __authors = [("prOq", None)] + __authors = [("prOq", "")] PREMIUM_PATTERN = r'class="nav-collapse collapse pull-right">[\s\w<>=-."/:]*\sz.</a></li>\s*<li><a href="/premium">.*\s*<span style="color: red">(.*?)</span>[\s\w<>/]*href="/logout"' diff --git a/pyload/plugins/account/RapiduNet.py b/pyload/plugins/account/RapiduNet.py index d2ea11e34..4489c6fbc 100644 --- a/pyload/plugins/account/RapiduNet.py +++ b/pyload/plugins/account/RapiduNet.py @@ -13,7 +13,7 @@ class RapiduNet(Account): __description = """Rapidu.net account plugin""" __license = "GPLv3" - __authors = [("prOq", None)] + __authors = [("prOq", "")] PREMIUM_PATTERN = r'<a href="premium/" style="padding-left: 0px;">Account: <b>Premium</b></a>' diff --git a/pyload/plugins/account/RyushareCom.py b/pyload/plugins/account/RyushareCom.py index 57f04f862..a555e6208 100644 --- a/pyload/plugins/account/RyushareCom.py +++ b/pyload/plugins/account/RyushareCom.py @@ -11,7 +11,7 @@ class RyushareCom(XFSAccount): __description = """Ryushare.com account plugin""" __license = "GPLv3" __authors = [("zoidberg", "zoidberg@mujmail.cz"), - ("trance4us", None)] + ("trance4us", "")] HOSTER_DOMAIN = "ryushare.com" diff --git a/pyload/plugins/account/UlozTo.py b/pyload/plugins/account/UlozTo.py index 32966bd28..d7087a7c2 100644 --- a/pyload/plugins/account/UlozTo.py +++ b/pyload/plugins/account/UlozTo.py @@ -15,7 +15,7 @@ class UlozTo(Account): __description = """Uloz.to account plugin""" __license = "GPLv3" __authors = [("zoidberg", "zoidberg@mujmail.cz"), - ("pulpe", None)] + ("pulpe", "")] TRAFFIC_LEFT_PATTERN = r'<li class="menu-kredit"><a href="/kredit" title="[^"]*?GB = ([\d.]+) MB"' |