diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-09 23:12:29 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-09 23:12:29 +0100 |
commit | 7df04a53b173ae16eac83323d86d998c03b98ba5 (patch) | |
tree | 3336bd5746fae26f7b5ea03eacbf767ef2f05257 | |
parent | [SimpleHoster] Fix https://github.com/pyload/pyload/issues/1022 (diff) | |
parent | [BasePlugin] Fix another typo (diff) | |
download | pyload-7df04a53b173ae16eac83323d86d998c03b98ba5.tar.xz |
Merge pull request #1026 from malkavi/patch-1
[BasePlugin] Fix another typo
-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()) |