diff options
author | Ivan <malkavi@users.noreply.github.com> | 2015-01-09 22:18:36 +0100 |
---|---|---|
committer | Ivan <malkavi@users.noreply.github.com> | 2015-01-09 22:18:36 +0100 |
commit | 995195e65c7ff8751df8eca6316524db6638c005 (patch) | |
tree | 3336bd5746fae26f7b5ea03eacbf767ef2f05257 /module | |
parent | [SimpleHoster] Fix https://github.com/pyload/pyload/issues/1022 (diff) | |
download | pyload-995195e65c7ff8751df8eca6316524db6638c005.tar.xz |
[BasePlugin] Fix another typo
Removed ':' from line 77
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/BasePlugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/BasePlugin.py b/module/plugins/hoster/BasePlugin.py index 4113ff42a..e4cc84f6b 100644 --- a/module/plugins/hoster/BasePlugin.py +++ b/module/plugins/hoster/BasePlugin.py @@ -74,7 +74,7 @@ class BasePlugin(Hoster): check = self.checkDownload({'empty file': re.compile(r'\A\Z'), 'html file' : re.compile(r'\A\s*<!DOCTYPE html'), - 'html error': re.compile(r'\A\s*(<.+>)?\d{3}(\Z|\s+)')}): + 'html error': re.compile(r'\A\s*(<.+>)?\d{3}(\Z|\s+)')}) if check: self.fail(check.capitalize()) |