diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-19 00:40:39 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-19 00:40:39 +0200 |
commit | 61a5b3d8b5315d62f857ce651444067f05b417ea (patch) | |
tree | 6b918c16da1852f57855639dd7e1c5c33e8a3610 | |
parent | Merge pull request #1723 from Pavion/patch-1 (diff) | |
parent | [UpdateManager] show plugin type one error (diff) | |
download | pyload-61a5b3d8b5315d62f857ce651444067f05b417ea.tar.xz |
Merge pull request #1766 from GammaC0de/patch-4
[UpdateManager] show plugin type one error
-rw-r--r-- | module/plugins/hooks/UpdateManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/UpdateManager.py b/module/plugins/hooks/UpdateManager.py index 117da0633..fb9e28b5d 100644 --- a/module/plugins/hooks/UpdateManager.py +++ b/module/plugins/hooks/UpdateManager.py @@ -17,7 +17,7 @@ from module.utils import fs_encode, save_join as fs_join class UpdateManager(Addon): __name__ = "UpdateManager" __type__ = "hook" - __version__ = "0.55" + __version__ = "0.56" __status__ = "testing" __config__ = [("activated" , "bool", "Activated" , True ), @@ -268,7 +268,7 @@ class UpdateManager(Addon): raise Exception(_("Version mismatch")) except Exception, e: - self.log_error(_("Error updating plugin: %s") % filename, e) + self.log_error(_("Error updating plugin: [%s] %s") % (type, name), e) if self.pyload.debug: traceback.print_exc() |