summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-12-03 23:32:26 +0100
committerGravatar Stefano <l.stickell@yahoo.it> 2013-12-15 22:23:08 +0100
commit5a9dd64824a2cebf41324567eb1d324e6aa62d4d (patch)
tree7e75fff86975588920e67767d0563dbcf7379d16
parentFilefactory: fixed free download (diff)
downloadpyload-5a9dd64824a2cebf41324567eb1d324e6aa62d4d.tar.xz
NowDownloadEu: fixed syntax error
See also #426 (cherry picked from commit c14d3c011e3e1a93893e0dde9de68f05540c4991)
-rw-r--r--pyload/plugins/hoster/NowDownloadEu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hoster/NowDownloadEu.py b/pyload/plugins/hoster/NowDownloadEu.py
index bd84b58bc..fb00e933e 100644
--- a/pyload/plugins/hoster/NowDownloadEu.py
+++ b/pyload/plugins/hoster/NowDownloadEu.py
@@ -25,7 +25,7 @@ class NowDownloadEu(SimpleHoster):
__name__ = "NowDownloadEu"
__type__ = "hoster"
__pattern__ = r"http://(?:www\.)?nowdownload\.(ch|co|eu|sx)/(dl/|download\.php\?id=)(?P<ID>\w+)"
- __version__ = "0.04"
+ __version__ = "0.05"
__description__ = """NowDownloadCh"""
__author_name__ = ("godofdream", "Walter Purcaro")
__author_mail__ = ("", "vuolter@gmail.com")
@@ -52,7 +52,7 @@ class NowDownloadEu(SimpleHoster):
found = re.search(self.FILE_WAIT_PATTERN, self.html)
if found:
wait = int(found.group(1))
- else
+ else:
wait = 60
baseurl = "http://www.nowdownload.ch"