diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-08-19 00:28:34 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-08-19 00:28:34 +0200 |
commit | 6bf69f001174e2ebdbdf01c7d733d17829f289fd (patch) | |
tree | 6b918c16da1852f57855639dd7e1c5c33e8a3610 | |
parent | Merge pull request #1723 from Pavion/patch-1 (diff) | |
download | pyload-6bf69f001174e2ebdbdf01c7d733d17829f289fd.tar.xz |
[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() |