summaryrefslogtreecommitdiffstats
path: root/module
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
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')
-rw-r--r--module/plugins/crypter/DailymotionBatch.py2
-rw-r--r--module/plugins/crypter/DlProtectCom.py2
-rw-r--r--module/plugins/crypter/NosvideoCom.py2
-rw-r--r--module/plugins/crypter/TnyCz.py2
-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
9 files changed, 9 insertions, 9 deletions
diff --git a/module/plugins/crypter/DailymotionBatch.py b/module/plugins/crypter/DailymotionBatch.py
index 2b692f92a..5c0dd9cec 100644
--- a/module/plugins/crypter/DailymotionBatch.py
+++ b/module/plugins/crypter/DailymotionBatch.py
@@ -28,7 +28,7 @@ from module.utils import save_join
class DailymotionBatch(Crypter):
__name__ = "DailymotionBatch"
__type__ = "crypter"
- __pattern__ = r"https?://(?:www\.)?dailymotion\.com/((playlists/)?(?P<TYPE>playlist|user)/)?(?P<ID>[\w^_]+)(?(TYPE)|#)"
+ __pattern__ = r'https?://(?:www\.)?dailymotion\.com/((playlists/)?(?P<TYPE>playlist|user)/)?(?P<ID>[\w^_]+)(?(TYPE)|#)'
__version__ = "0.01"
__description__ = """Dailymotion.com channel & playlist decrypter"""
__author_name__ = "Walter Purcaro"
diff --git a/module/plugins/crypter/DlProtectCom.py b/module/plugins/crypter/DlProtectCom.py
index 870f07c1a..dbe5bf705 100644
--- a/module/plugins/crypter/DlProtectCom.py
+++ b/module/plugins/crypter/DlProtectCom.py
@@ -26,7 +26,7 @@ from module.plugins.internal.SimpleCrypter import SimpleCrypter
class DlProtectCom(SimpleCrypter):
__name__ = "DlProtectCom"
__type__ = "crypter"
- __pattern__ = r"http://(?:www\.)?dl-protect\.com/((en|fr)/)?(?P<ID>\w+)"
+ __pattern__ = r'http://(?:www\.)?dl-protect\.com/((en|fr)/)?(?P<ID>\w+)'
__version__ = "0.01"
__description__ = """Dl-protect.com decrypter plugin"""
__author_name__ = "Walter Purcaro"
diff --git a/module/plugins/crypter/NosvideoCom.py b/module/plugins/crypter/NosvideoCom.py
index 258950422..63e199a7a 100644
--- a/module/plugins/crypter/NosvideoCom.py
+++ b/module/plugins/crypter/NosvideoCom.py
@@ -6,7 +6,7 @@ from module.plugins.internal.SimpleCrypter import SimpleCrypter
class NosvideoCom(SimpleCrypter):
__name__ = "NosvideoCom"
__type__ = "crypter"
- __pattern__ = r"http://(?:www\.)?nosvideo\.com/\?v=\w+"
+ __pattern__ = r'http://(?:www\.)?nosvideo\.com/\?v=\w+'
__version__ = "0.01"
__description__ = """Nosvideo.com decrypter plugin"""
__author_name__ = "igel"
diff --git a/module/plugins/crypter/TnyCz.py b/module/plugins/crypter/TnyCz.py
index aeecea9ea..6c56f7639 100644
--- a/module/plugins/crypter/TnyCz.py
+++ b/module/plugins/crypter/TnyCz.py
@@ -25,7 +25,7 @@ import re
class TnyCz(SimpleCrypter):
__name__ = "TnyCz"
__type__ = "crypter"
- __pattern__ = r"http://(?:www\.)?tny\.cz/\w+"
+ __pattern__ = r'http://(?:www\.)?tny\.cz/\w+'
__version__ = "0.01"
__description__ = """Tny.cz decrypter plugin"""
__author_name__ = "Walter Purcaro"
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"