diff options
| author | 2014-11-16 00:36:50 +0100 | |
|---|---|---|
| committer | 2014-11-16 00:42:52 +0100 | |
| commit | cbcb5769288f1d3445cda49be6968e6e79b301c8 (patch) | |
| tree | 760b0a14622966c022c3884f563fef0a337aec0a /pyload | |
| parent | Move socketbackend.ttypes to api.types (diff) | |
| download | pyload-cbcb5769288f1d3445cda49be6968e6e79b301c8.tar.xz | |
[UptoboxCom] Fix ERROR_PATTERN
Diffstat (limited to 'pyload')
| -rw-r--r-- | pyload/plugins/hoster/UptoboxCom.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/pyload/plugins/hoster/UptoboxCom.py b/pyload/plugins/hoster/UptoboxCom.py index 5aaa73286..ad14307c2 100644 --- a/pyload/plugins/hoster/UptoboxCom.py +++ b/pyload/plugins/hoster/UptoboxCom.py @@ -6,7 +6,7 @@ from pyload.plugins.internal.XFSHoster import XFSHoster, create_getInfo  class UptoboxCom(XFSHoster):      __name__    = "UptoboxCom"      __type__    = "hoster" -    __version__ = "0.15" +    __version__ = "0.16"      __pattern__ = r'https?://(?:www\.)?uptobox\.com/\w{12}' @@ -22,6 +22,8 @@ class UptoboxCom(XFSHoster):      LINK_PATTERN = r'"(https?://\w+\.uptobox\.com/d/.*?)"' +    ERROR_PATTERN = r'>(You have to wait.+till next download.)<'  #@TODO: Check XFSHoster ERROR_PATTERN +      def setup(self):          self.multiDL = True | 
