diff options
author | 2014-10-22 19:47:00 +0200 | |
---|---|---|
committer | 2014-10-22 19:47:00 +0200 | |
commit | 1b096b2eb2634e8dea80b06ab9ecde206b198b35 (patch) | |
tree | c37727ef1c0c43c553725c6a4ae92022f48bcc23 /module/plugins/Plugin.py | |
parent | [Keep2shareCC] Fix CAPTCHA_PATTERN (diff) | |
download | pyload-1b096b2eb2634e8dea80b06ab9ecde206b198b35.tar.xz |
Spare code cosmetics
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r-- | module/plugins/Plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 83571345c..0a4b6d44d 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -286,7 +286,7 @@ class Plugin(Base): raise Fail(reason) def error(self, reason=None, type="parse"): - raise Fail("%s error%s | Plugin out of date" % (type.capitalize(), ':' + str(reason) if reason else "")) + raise Fail("%s error%s | Plugin out of date" % (type.capitalize(), ': ' + str(reason) if reason else "")) if self.core.debug: print_exc() |