From 8dbe6073781bb0e9425f17cd5e7ce7bf525f20c6 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Fri, 11 Apr 2014 11:50:52 +0200 Subject: Fix __author_name__ and __author_mail__ Merges vuolter/pyload@6c57a37 (cherry picked from commit ce955b6c04f6ddaab1696c6cabf5e0aa83cbf846) Conflicts: module/plugins/Account.py module/plugins/Container.py module/plugins/Crypter.py module/plugins/Hoster.py module/plugins/hooks/MultiDebridCom.py module/plugins/hooks/UnrestrictLi.py --- module/plugins/hoster/FreeWayMe.py | 4 ++-- module/plugins/hoster/NosuploadCom.py | 1 + module/plugins/hoster/OverLoadMe.py | 4 ++-- module/plugins/hoster/SoundcloudCom.py | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) (limited to 'module/plugins/hoster') diff --git a/module/plugins/hoster/FreeWayMe.py b/module/plugins/hoster/FreeWayMe.py index 5439c10c1..2cb0d36c2 100644 --- a/module/plugins/hoster/FreeWayMe.py +++ b/module/plugins/hoster/FreeWayMe.py @@ -25,8 +25,8 @@ class FreeWayMe(Hoster): __type__ = "hoster" __pattern__ = r"https://free-way.me/.*" __description__ = """FreeWayMe hoster plugin""" - __author_name__ = ("Nicolas Giese") - __author_mail__ = ("james@free-way.me") + __author_name__ = "Nicolas Giese" + __author_mail__ = "james@free-way.me" def setup(self): self.resumeDownload = False diff --git a/module/plugins/hoster/NosuploadCom.py b/module/plugins/hoster/NosuploadCom.py index 5735390bb..f7e3d2657 100644 --- a/module/plugins/hoster/NosuploadCom.py +++ b/module/plugins/hoster/NosuploadCom.py @@ -12,6 +12,7 @@ class NosuploadCom(XFileSharingPro): __pattern__ = r"http://(?:www\.)?nosupload\.com/\?d=\w{12}" __description__ = """nosupload.com hoster plugin""" __author_name__ = "igel" + __author_mail__ = "igelkun@myopera.com" HOSTER_NAME = "nosupload.com" diff --git a/module/plugins/hoster/OverLoadMe.py b/module/plugins/hoster/OverLoadMe.py index 658b3940f..33c041973 100644 --- a/module/plugins/hoster/OverLoadMe.py +++ b/module/plugins/hoster/OverLoadMe.py @@ -15,8 +15,8 @@ class OverLoadMe(Hoster): __type__ = "hoster" __pattern__ = r"https?://.*overload\.me.*" __description__ = """Over-Load.me hoster plugin""" - __author_name__ = ("marley") - __author_mail__ = ("marley@over-load.me") + __author_name__ = "marley" + __author_mail__ = "marley@over-load.me" def getFilename(self, url): try: diff --git a/module/plugins/hoster/SoundcloudCom.py b/module/plugins/hoster/SoundcloudCom.py index 7e6d16236..6cccf4cab 100644 --- a/module/plugins/hoster/SoundcloudCom.py +++ b/module/plugins/hoster/SoundcloudCom.py @@ -12,8 +12,8 @@ class SoundcloudCom(Hoster): __pattern__ = r"https?://(?:www\.)?soundcloud\.com/(?P.*?)/(?P.*)" __version__ = "0.1" __description__ = """SoundCloud.com audio download hoster""" - __author_name__ = ("Peekayy") - __author_mail__ = ("peekayy.dev@gmail.com") + __author_name__ = "Peekayy" + __author_mail__ = "peekayy.dev@gmail.com" def process(self, pyfile): # default UserAgent of HTTPRequest fails for this hoster so we use this one -- cgit v1.2.3