diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-02 11:43:10 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-02 11:43:10 +0200 |
commit | 94d591fcde5330323a5575049164ca94dcb5daa3 (patch) | |
tree | 7da44930b0f55a6a5f72573eb5a1670b4123e680 /module/plugins/hoster/SoundcloudCom.py | |
parent | Fix https://github.com/pyload/pyload/issues/1780 (diff) | |
download | pyload-94d591fcde5330323a5575049164ca94dcb5daa3.tar.xz |
Spare fixes
Diffstat (limited to 'module/plugins/hoster/SoundcloudCom.py')
-rw-r--r-- | module/plugins/hoster/SoundcloudCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/SoundcloudCom.py b/module/plugins/hoster/SoundcloudCom.py index b189ee1ba..a7a45d028 100644 --- a/module/plugins/hoster/SoundcloudCom.py +++ b/module/plugins/hoster/SoundcloudCom.py @@ -12,7 +12,7 @@ class SoundcloudCom(SimpleHoster): __version__ = "0.12" __status__ = "testing" - __pattern__ = r'https?://(?:www\.)?soundcloud\.com/[\w-]+/[\w-]+' + __pattern__ = r'https?://(?:www\.)?soundcloud\.com/[\w\-]+/[\w\-]+' __config__ = [("use_premium", "bool" , "Use premium account if available", True ), ("quality" , "Lower;Higher", "Quality" , "Higher")] |