diff options
Diffstat (limited to 'module/plugins/internal/Account.py')
-rw-r--r-- | module/plugins/internal/Account.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Account.py b/module/plugins/internal/Account.py index 2ca01de0e..1034fec19 100644 --- a/module/plugins/internal/Account.py +++ b/module/plugins/internal/Account.py @@ -13,7 +13,7 @@ from module.utils import compare_time, lock class Account(Plugin): __name__ = "Account" __type__ = "account" - __version__ = "0.55" + __version__ = "0.56" __status__ = "testing" __description__ = """Base account plugin""" @@ -63,7 +63,7 @@ class Account(Plugin): self.periodical() except Exception, e: - self.log_error(_("Error executing periodical task: %s") % e) + self.log_error(_("Error executing periodical task: %s") % e, trace=True) self.init_periodical(self.interval, threaded) |