diff options
| author | 2015-03-10 03:56:31 +0100 | |
|---|---|---|
| committer | 2015-03-10 03:56:31 +0100 | |
| commit | badb1317968331206d409ec8abf0c40ffc980bf8 (patch) | |
| tree | b12d22e198d0e6417da84196b4962187bec2c5f3 /module | |
| parent | [SimpleHoster] Fixup (diff) | |
| download | pyload-badb1317968331206d409ec8abf0c40ffc980bf8.tar.xz | |
[SimpleHoster] Fix https://github.com/pyload/pyload/issues/1242
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/internal/SimpleHoster.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py index 4777d0641..b2c40a828 100644 --- a/module/plugins/internal/SimpleHoster.py +++ b/module/plugins/internal/SimpleHoster.py @@ -246,7 +246,7 @@ def secondsToMidnight(gmt=0):  class SimpleHoster(Hoster):      __name__    = "SimpleHoster"      __type__    = "hoster" -    __version__ = "1.18" +    __version__ = "1.19"      __pattern__ = r'^unmatchable$' @@ -544,7 +544,7 @@ class SimpleHoster(Hoster):                  self.info['error'] = errmsg -                if "hour" in errmsg +                if "hour" in errmsg:                      self.wait(secondsToMidnight(gmt=2), True)                  elif re.search("da(il)?y|today", errmsg):  | 
