summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-12 23:42:37 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-12 23:42:37 +0100
commit7b3c33d5231ca6b46619cfedaf1769fbe91aa76c (patch)
treee5d67dec2e12c2e6b2aef0f488827270d0299403
parentMove InitHomeDir to pyload __init__ (diff)
downloadpyload-7b3c33d5231ca6b46619cfedaf1769fbe91aa76c.tar.xz
Use empty string when missing author email
-rw-r--r--pyload/plugins/account/BitshareCom.py2
-rw-r--r--pyload/plugins/account/CatShareNet.py2
-rw-r--r--pyload/plugins/account/RapiduNet.py2
-rw-r--r--pyload/plugins/account/RyushareCom.py2
-rw-r--r--pyload/plugins/account/UlozTo.py2
-rw-r--r--pyload/plugins/addon/ExtractArchive.py2
-rw-r--r--pyload/plugins/addon/UnSkipOnFail.py2
-rw-r--r--pyload/plugins/crypter/DataHu.py2
-rw-r--r--pyload/plugins/crypter/DontKnowMe.py2
-rw-r--r--pyload/plugins/crypter/ILoadTo.py2
-rw-r--r--pyload/plugins/crypter/LinkCryptWs.py4
-rw-r--r--pyload/plugins/crypter/LinkdecrypterCom.py2
-rw-r--r--pyload/plugins/crypter/RSLayerCom.py2
-rw-r--r--pyload/plugins/crypter/WiiReloadedOrg.py2
-rw-r--r--pyload/plugins/hoster/BitshareCom.py2
-rw-r--r--pyload/plugins/hoster/CatShareNet.py2
-rw-r--r--pyload/plugins/hoster/DataHu.py2
-rw-r--r--pyload/plugins/hoster/FileApeCom.py2
-rw-r--r--pyload/plugins/hoster/FileSharkPl.py2
-rw-r--r--pyload/plugins/hoster/FileserveCom.py2
-rw-r--r--pyload/plugins/hoster/FilesonicCom.py2
-rw-r--r--pyload/plugins/hoster/OneFichierCom.py2
-rw-r--r--pyload/plugins/hoster/RapidgatorNet.py2
-rw-r--r--pyload/plugins/hoster/RapiduNet.py2
-rw-r--r--pyload/plugins/hoster/ShareplaceCom.py2
-rw-r--r--pyload/plugins/hoster/SharingmatrixCom.py2
-rw-r--r--pyload/plugins/hoster/TurbobitNet.py2
-rw-r--r--pyload/plugins/hoster/UpleaCom.py2
-rw-r--r--pyload/plugins/hoster/WuploadCom.py2
-rw-r--r--pyload/plugins/hoster/ZShareNet.py4
30 files changed, 32 insertions, 32 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"'
diff --git a/pyload/plugins/addon/ExtractArchive.py b/pyload/plugins/addon/ExtractArchive.py
index 15224eba5..25da7ba12 100644
--- a/pyload/plugins/addon/ExtractArchive.py
+++ b/pyload/plugins/addon/ExtractArchive.py
@@ -76,7 +76,7 @@ class ExtractArchive(Addon):
__description = """Extract different kind of archives"""
__license = "GPLv3"
__authors = [("RaNaN", "ranan@pyload.org"),
- ("AndroKev", None),
+ ("AndroKev", ""),
("Walter Purcaro", "vuolter@gmail.com")]
diff --git a/pyload/plugins/addon/UnSkipOnFail.py b/pyload/plugins/addon/UnSkipOnFail.py
index 008af0c5b..15c0dfa4a 100644
--- a/pyload/plugins/addon/UnSkipOnFail.py
+++ b/pyload/plugins/addon/UnSkipOnFail.py
@@ -16,7 +16,7 @@ class UnSkipOnFail(Addon):
__description = """When a download fails, restart skipped duplicates"""
__license = "GPLv3"
- __authors = [("hagg", None)]
+ __authors = [("hagg", "")]
def downloadFailed(self, pyfile):
diff --git a/pyload/plugins/crypter/DataHu.py b/pyload/plugins/crypter/DataHu.py
index 9ec98d705..96129d53a 100644
--- a/pyload/plugins/crypter/DataHu.py
+++ b/pyload/plugins/crypter/DataHu.py
@@ -16,7 +16,7 @@ class DataHu(SimpleCrypter):
__description = """Data.hu folder decrypter plugin"""
__license = "GPLv3"
- __authors = [("crash", None),
+ __authors = [("crash", ""),
("stickell", "l.stickell@yahoo.it")]
diff --git a/pyload/plugins/crypter/DontKnowMe.py b/pyload/plugins/crypter/DontKnowMe.py
index d1ee0f724..e40e3292f 100644
--- a/pyload/plugins/crypter/DontKnowMe.py
+++ b/pyload/plugins/crypter/DontKnowMe.py
@@ -18,7 +18,7 @@ class DontKnowMe(Crypter):
__description = """DontKnow.me decrypter plugin"""
__license = "GPLv3"
- __authors = [("selaux", None)]
+ __authors = [("selaux", "")]
LINK_PATTERN = r'http://dontknow\.me/at/\?(.+)$'
diff --git a/pyload/plugins/crypter/ILoadTo.py b/pyload/plugins/crypter/ILoadTo.py
index b63a5bc30..f299924b4 100644
--- a/pyload/plugins/crypter/ILoadTo.py
+++ b/pyload/plugins/crypter/ILoadTo.py
@@ -13,7 +13,7 @@ class ILoadTo(DeadCrypter):
__description = """Iload.to decrypter plugin"""
__license = "GPLv3"
- __authors = [("hzpz", None)]
+ __authors = [("hzpz", "")]
getInfo = create_getInfo(ILoadTo)
diff --git a/pyload/plugins/crypter/LinkCryptWs.py b/pyload/plugins/crypter/LinkCryptWs.py
index b20ab5780..3285e2dc8 100644
--- a/pyload/plugins/crypter/LinkCryptWs.py
+++ b/pyload/plugins/crypter/LinkCryptWs.py
@@ -22,8 +22,8 @@ class LinkCryptWs(Crypter):
__description = """LinkCrypt.ws decrypter plugin"""
__license = "GPLv3"
__authors = [("kagenoshin", "kagenoshin[AT]gmx[DOT]ch"),
- ("glukgluk", None),
- ("Gummibaer", None)]
+ ("glukgluk", ""),
+ ("Gummibaer", "")]
CRYPTED_KEY = "crypted"
diff --git a/pyload/plugins/crypter/LinkdecrypterCom.py b/pyload/plugins/crypter/LinkdecrypterCom.py
index d2b954fed..dd4429db1 100644
--- a/pyload/plugins/crypter/LinkdecrypterCom.py
+++ b/pyload/plugins/crypter/LinkdecrypterCom.py
@@ -16,7 +16,7 @@ class LinkdecrypterCom(Crypter):
__description = """Linkdecrypter.com"""
__license = "GPLv3"
__authors = [("zoidberg", "zoidberg@mujmail.cz"),
- ("flowlee", None)]
+ ("flowlee", "")]
TEXTAREA_PATTERN = r'<textarea name="links" wrap="off" readonly="1" class="caja_des">(.+)</textarea>'
diff --git a/pyload/plugins/crypter/RSLayerCom.py b/pyload/plugins/crypter/RSLayerCom.py
index 3bf63f2e8..0578fc3cf 100644
--- a/pyload/plugins/crypter/RSLayerCom.py
+++ b/pyload/plugins/crypter/RSLayerCom.py
@@ -13,7 +13,7 @@ class RSLayerCom(DeadCrypter):
__description = """RS-Layer.com decrypter plugin"""
__license = "GPLv3"
- __authors = [("hzpz", None)]
+ __authors = [("hzpz", "")]
getInfo = create_getInfo(RSLayerCom)
diff --git a/pyload/plugins/crypter/WiiReloadedOrg.py b/pyload/plugins/crypter/WiiReloadedOrg.py
index f185cab49..333b2d316 100644
--- a/pyload/plugins/crypter/WiiReloadedOrg.py
+++ b/pyload/plugins/crypter/WiiReloadedOrg.py
@@ -13,7 +13,7 @@ class WiiReloadedOrg(DeadCrypter):
__description = """Wii-Reloaded.org decrypter plugin"""
__license = "GPLv3"
- __authors = [("hzpz", None)]
+ __authors = [("hzpz", "")]
getInfo = create_getInfo(WiiReloadedOrg)
diff --git a/pyload/plugins/hoster/BitshareCom.py b/pyload/plugins/hoster/BitshareCom.py
index ef22e9435..cd0028850 100644
--- a/pyload/plugins/hoster/BitshareCom.py
+++ b/pyload/plugins/hoster/BitshareCom.py
@@ -17,7 +17,7 @@ class BitshareCom(SimpleHoster):
__description = """Bitshare.com hoster plugin"""
__license = "GPLv3"
- __authors = [("Paul King", None),
+ __authors = [("Paul King", ""),
("fragonib", "fragonib[AT]yahoo[DOT]es")]
diff --git a/pyload/plugins/hoster/CatShareNet.py b/pyload/plugins/hoster/CatShareNet.py
index da4b89950..3e1520d4b 100644
--- a/pyload/plugins/hoster/CatShareNet.py
+++ b/pyload/plugins/hoster/CatShareNet.py
@@ -16,7 +16,7 @@ class CatShareNet(SimpleHoster):
__description = """CatShare.net hoster plugin"""
__license = "GPLv3"
__authors = [("z00nx", "z00nx0@gmail.com"),
- ("prOq", None),
+ ("prOq", ""),
("Walter Purcaro", "vuolter@gmail.com")]
diff --git a/pyload/plugins/hoster/DataHu.py b/pyload/plugins/hoster/DataHu.py
index 1b09ea2f5..6f798c5dc 100644
--- a/pyload/plugins/hoster/DataHu.py
+++ b/pyload/plugins/hoster/DataHu.py
@@ -17,7 +17,7 @@ class DataHu(SimpleHoster):
__description = """Data.hu hoster plugin"""
__license = "GPLv3"
- __authors = [("crash", None),
+ __authors = [("crash", ""),
("stickell", "l.stickell@yahoo.it")]
diff --git a/pyload/plugins/hoster/FileApeCom.py b/pyload/plugins/hoster/FileApeCom.py
index 088ba71b3..36a5a5cc0 100644
--- a/pyload/plugins/hoster/FileApeCom.py
+++ b/pyload/plugins/hoster/FileApeCom.py
@@ -12,7 +12,7 @@ class FileApeCom(DeadHoster):
__description = """FileApe.com hoster plugin"""
__license = "GPLv3"
- __authors = [("espes", None)]
+ __authors = [("espes", "")]
getInfo = create_getInfo(FileApeCom)
diff --git a/pyload/plugins/hoster/FileSharkPl.py b/pyload/plugins/hoster/FileSharkPl.py
index 480075004..673da41d0 100644
--- a/pyload/plugins/hoster/FileSharkPl.py
+++ b/pyload/plugins/hoster/FileSharkPl.py
@@ -16,7 +16,7 @@ class FileSharkPl(SimpleHoster):
__description = """FileShark.pl hoster plugin"""
__license = "GPLv3"
- __authors = [("prOq", None),
+ __authors = [("prOq", ""),
("Walter Purcaro", "vuolter@gmail.com")]
diff --git a/pyload/plugins/hoster/FileserveCom.py b/pyload/plugins/hoster/FileserveCom.py
index 1b59750f2..bc2e963b8 100644
--- a/pyload/plugins/hoster/FileserveCom.py
+++ b/pyload/plugins/hoster/FileserveCom.py
@@ -41,7 +41,7 @@ class FileserveCom(Hoster):
__license = "GPLv3"
__authors = [("jeix", "jeix@hasnomail.de"),
("mkaay", "mkaay@mkaay.de"),
- ("Paul King", None),
+ ("Paul King", ""),
("zoidberg", "zoidberg@mujmail.cz")]
diff --git a/pyload/plugins/hoster/FilesonicCom.py b/pyload/plugins/hoster/FilesonicCom.py
index d12ec18ed..a37408523 100644
--- a/pyload/plugins/hoster/FilesonicCom.py
+++ b/pyload/plugins/hoster/FilesonicCom.py
@@ -13,7 +13,7 @@ class FilesonicCom(DeadHoster):
__description = """Filesonic.com hoster plugin"""
__license = "GPLv3"
__authors = [("jeix", "jeix@hasnomail.de"),
- ("paulking", None)]
+ ("paulking", "")]
getInfo = create_getInfo(FilesonicCom)
diff --git a/pyload/plugins/hoster/OneFichierCom.py b/pyload/plugins/hoster/OneFichierCom.py
index 1c75b1ca9..9c645618c 100644
--- a/pyload/plugins/hoster/OneFichierCom.py
+++ b/pyload/plugins/hoster/OneFichierCom.py
@@ -17,7 +17,7 @@ class OneFichierCom(SimpleHoster):
__authors = [("fragonib", "fragonib[AT]yahoo[DOT]es"),
("the-razer", "daniel_ AT gmx DOT net"),
("zoidberg", "zoidberg@mujmail.cz"),
- ("imclem", None),
+ ("imclem", ""),
("stickell", "l.stickell@yahoo.it"),
("Elrick69", "elrick69[AT]rocketmail[DOT]com"),
("Walter Purcaro", "vuolter@gmail.com")]
diff --git a/pyload/plugins/hoster/RapidgatorNet.py b/pyload/plugins/hoster/RapidgatorNet.py
index efb7985a8..dd6c7cbb6 100644
--- a/pyload/plugins/hoster/RapidgatorNet.py
+++ b/pyload/plugins/hoster/RapidgatorNet.py
@@ -21,7 +21,7 @@ class RapidgatorNet(SimpleHoster):
__description = """Rapidgator.net hoster plugin"""
__license = "GPLv3"
__authors = [("zoidberg", "zoidberg@mujmail.cz"),
- ("chrox", None),
+ ("chrox", ""),
("stickell", "l.stickell@yahoo.it"),
("Walter Purcaro", "vuolter@gmail.com")]
diff --git a/pyload/plugins/hoster/RapiduNet.py b/pyload/plugins/hoster/RapiduNet.py
index 8be8647a8..cd763bde7 100644
--- a/pyload/plugins/hoster/RapiduNet.py
+++ b/pyload/plugins/hoster/RapiduNet.py
@@ -19,7 +19,7 @@ class RapiduNet(SimpleHoster):
__description = """Rapidu.net hoster plugin"""
__license = "GPLv3"
- __authors = [("prOq", None)]
+ __authors = [("prOq", "")]
COOKIES = [("rapidu.net", "rapidu_lang", "en")]
diff --git a/pyload/plugins/hoster/ShareplaceCom.py b/pyload/plugins/hoster/ShareplaceCom.py
index 466600ff6..4c4dbdc3b 100644
--- a/pyload/plugins/hoster/ShareplaceCom.py
+++ b/pyload/plugins/hoster/ShareplaceCom.py
@@ -16,7 +16,7 @@ class ShareplaceCom(Hoster):
__description = """Shareplace.com hoster plugin"""
__license = "GPLv3"
- __authors = [("ACCakut", None)]
+ __authors = [("ACCakut", "")]
def process(self, pyfile):
diff --git a/pyload/plugins/hoster/SharingmatrixCom.py b/pyload/plugins/hoster/SharingmatrixCom.py
index 2729ad5d5..9642542c8 100644
--- a/pyload/plugins/hoster/SharingmatrixCom.py
+++ b/pyload/plugins/hoster/SharingmatrixCom.py
@@ -13,7 +13,7 @@ class SharingmatrixCom(DeadHoster):
__description = """Sharingmatrix.com hoster plugin"""
__license = "GPLv3"
__authors = [("jeix", "jeix@hasnomail.de"),
- ("paulking", None)]
+ ("paulking", "")]
getInfo = create_getInfo(SharingmatrixCom)
diff --git a/pyload/plugins/hoster/TurbobitNet.py b/pyload/plugins/hoster/TurbobitNet.py
index ffb716887..4145316ec 100644
--- a/pyload/plugins/hoster/TurbobitNet.py
+++ b/pyload/plugins/hoster/TurbobitNet.py
@@ -24,7 +24,7 @@ class TurbobitNet(SimpleHoster):
__description = """Turbobit.net hoster plugin"""
__license = "GPLv3"
__authors = [("zoidberg", "zoidberg@mujmail.cz"),
- ("prOq", None)]
+ ("prOq", "")]
URL_REPLACEMENTS = [(__pattern + ".*", "http://turbobit.net/\g<ID>.html")]
diff --git a/pyload/plugins/hoster/UpleaCom.py b/pyload/plugins/hoster/UpleaCom.py
index a1588c842..2ec420962 100644
--- a/pyload/plugins/hoster/UpleaCom.py
+++ b/pyload/plugins/hoster/UpleaCom.py
@@ -16,7 +16,7 @@ class UpleaCom(XFSHoster):
__description = """Uplea.com hoster plugin"""
__license = "GPLv3"
- __authors = [("Redleon", None)]
+ __authors = [("Redleon", "")]
HOSTER_DOMAIN = "uplea.com"
diff --git a/pyload/plugins/hoster/WuploadCom.py b/pyload/plugins/hoster/WuploadCom.py
index 2b2ca7eb9..67f8d4bfb 100644
--- a/pyload/plugins/hoster/WuploadCom.py
+++ b/pyload/plugins/hoster/WuploadCom.py
@@ -13,7 +13,7 @@ class WuploadCom(DeadHoster):
__description = """Wupload.com hoster plugin"""
__license = "GPLv3"
__authors = [("jeix", "jeix@hasnomail.de"),
- ("Paul King", None)]
+ ("Paul King", "")]
getInfo = create_getInfo(WuploadCom)
diff --git a/pyload/plugins/hoster/ZShareNet.py b/pyload/plugins/hoster/ZShareNet.py
index 5392bfd94..a2265bfcc 100644
--- a/pyload/plugins/hoster/ZShareNet.py
+++ b/pyload/plugins/hoster/ZShareNet.py
@@ -12,8 +12,8 @@ class ZShareNet(DeadHoster):
__description = """ZShare.net hoster plugin"""
__license = "GPLv3"
- __authors = [("espes", None),
- ("Cptn Sandwich", None)]
+ __authors = [("espes", ""),
+ ("Cptn Sandwich", "")]
getInfo = create_getInfo(ZShareNet)