summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-04-11 12:28:09 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-21 17:22:41 +0200
commite18ff0bb37e21f8de49e4b657a461a3160a60393 (patch)
treefb2bcc08057fbb8dbd31509f71d3bccc82e57f26 /module/plugins/hoster
parentUse pyfile instead self.pyfile (diff)
downloadpyload-e18ff0bb37e21f8de49e4b657a461a3160a60393.tar.xz
Replace __pattern__ double quotes with single
Merges vuolter/pyload@dfcdf7b (cherry picked from commit 49c1c476ab997cd1e87ac693b17fe3df0c334346) Conflicts: module/plugins/container/LinkList.py pyload/plugins/crypter/HoerbuchIn.py pyload/plugins/hoster/ChipDe.py pyload/plugins/hoster/DebridItaliaCom.py pyload/plugins/hoster/MultiDebridCom.py
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r--module/plugins/hoster/FileStoreTo.py2
-rw-r--r--module/plugins/hoster/FreeWayMe.py2
-rw-r--r--module/plugins/hoster/NosuploadCom.py2
-rw-r--r--module/plugins/hoster/OverLoadMe.py2
-rw-r--r--module/plugins/hoster/SoundcloudCom.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/hoster/FileStoreTo.py b/module/plugins/hoster/FileStoreTo.py
index 467d8eae5..5a73fb9ef 100644
--- a/module/plugins/hoster/FileStoreTo.py
+++ b/module/plugins/hoster/FileStoreTo.py
@@ -25,7 +25,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class FileStoreTo(SimpleHoster):
__name__ = "FileStoreTo"
__type__ = "hoster"
- __pattern__ = r"http://(?:www\.)?filestore\.to/\?d=(?P<ID>\w+)"
+ __pattern__ = r'http://(?:www\.)?filestore\.to/\?d=(?P<ID>\w+)'
__version__ = "0.01"
__description__ = """FileStore.to hoster plugin"""
__author_name__ = ("Walter Purcaro", "stickell")
diff --git a/module/plugins/hoster/FreeWayMe.py b/module/plugins/hoster/FreeWayMe.py
index dbdf8b34f..20a53108c 100644
--- a/module/plugins/hoster/FreeWayMe.py
+++ b/module/plugins/hoster/FreeWayMe.py
@@ -23,7 +23,7 @@ class FreeWayMe(Hoster):
__name__ = "FreeWayMe"
__version__ = "0.11"
__type__ = "hoster"
- __pattern__ = r"https://(?:www\.)?free-way.me/.*"
+ __pattern__ = r'https://(?:www\.)?free-way.me/.*'
__description__ = """FreeWayMe hoster plugin"""
__author_name__ = "Nicolas Giese"
__author_mail__ = "james@free-way.me"
diff --git a/module/plugins/hoster/NosuploadCom.py b/module/plugins/hoster/NosuploadCom.py
index 59142d1b7..1de734222 100644
--- a/module/plugins/hoster/NosuploadCom.py
+++ b/module/plugins/hoster/NosuploadCom.py
@@ -9,7 +9,7 @@ class NosuploadCom(XFileSharingPro):
__name__ = "NosuploadCom"
__type__ = "hoster"
__version__ = "0.1"
- __pattern__ = r"http://(?:www\.)?nosupload\.com/\?d=\w{12}"
+ __pattern__ = r'http://(?:www\.)?nosupload\.com/\?d=\w{12}'
__description__ = """Nosupload.com hoster plugin"""
__author_name__ = "igel"
__author_mail__ = "igelkun@myopera.com"
diff --git a/module/plugins/hoster/OverLoadMe.py b/module/plugins/hoster/OverLoadMe.py
index 5edbb2c57..aaa1442e4 100644
--- a/module/plugins/hoster/OverLoadMe.py
+++ b/module/plugins/hoster/OverLoadMe.py
@@ -13,7 +13,7 @@ class OverLoadMe(Hoster):
__name__ = "OverLoadMe"
__version__ = "0.01"
__type__ = "hoster"
- __pattern__ = r"https?://.*overload\.me.*"
+ __pattern__ = r'https?://.*overload\.me.*'
__description__ = """Over-Load.me hoster plugin"""
__author_name__ = "marley"
__author_mail__ = "marley@over-load.me"
diff --git a/module/plugins/hoster/SoundcloudCom.py b/module/plugins/hoster/SoundcloudCom.py
index e6bc1455a..a1ec1378a 100644
--- a/module/plugins/hoster/SoundcloudCom.py
+++ b/module/plugins/hoster/SoundcloudCom.py
@@ -9,7 +9,7 @@ from module.plugins.Hoster import Hoster
class SoundcloudCom(Hoster):
__name__ = "SoundcloudCom"
__type__ = "hoster"
- __pattern__ = r"https?://(?:www\.)?soundcloud\.com/(?P<UID>.*?)/(?P<SID>.*)"
+ __pattern__ = r'https?://(?:www\.)?soundcloud\.com/(?P<UID>.*?)/(?P<SID>.*)'
__version__ = "0.1"
__description__ = """SoundCloud.com hoster plugin"""
__author_name__ = "Peekayy"