summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-09-30 00:30:53 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-09-30 00:30:53 +0200
commit3b3a4bd889286777ba6a590a1f74cf3edae36a72 (patch)
treec556a0f6072c9c7f41e9608a655aa0ae1e706221 /module/plugins/internal
parent[XFSHoster] Revert https://github.com/pyload/pyload/pull/1883 (diff)
downloadpyload-3b3a4bd889286777ba6a590a1f74cf3edae36a72.tar.xz
Add __config__ to MultiAccount (and XFSAccount) based plugins
Diffstat (limited to 'module/plugins/internal')
-rw-r--r--module/plugins/internal/Account.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/module/plugins/internal/Account.py b/module/plugins/internal/Account.py
index 196589e85..7060959ee 100644
--- a/module/plugins/internal/Account.py
+++ b/module/plugins/internal/Account.py
@@ -303,6 +303,7 @@ class Account(Plugin):
@lock
def removeAccount(self, user):
+ self.log_info(_("Removing user `%s`...") % user)
self.accounts.pop(user, None)
if user is self.user:
self.choose()