diff options
author | 2013-03-24 21:27:43 +0100 | |
---|---|---|
committer | 2013-03-24 21:27:43 +0100 | |
commit | 7b4c75f0dd755e28fcffc0e4fdd05452458a3b09 (patch) | |
tree | 43ef5fe76ff5ff235cc52b79f16b9a8b6047bca8 /module/AccountManager.py | |
parent | Merge remote-tracking branch 'origin/stable' (diff) | |
download | pyload-7b4c75f0dd755e28fcffc0e4fdd05452458a3b09.tar.xz |
added view type for input fields
Diffstat (limited to 'module/AccountManager.py')
-rw-r--r-- | module/AccountManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/AccountManager.py b/module/AccountManager.py index 45b4eef95..d90c957c3 100644 --- a/module/AccountManager.py +++ b/module/AccountManager.py @@ -100,7 +100,7 @@ class AccountManager: if plugin in self.accounts and user in self.accounts[plugin]: del self.accounts[plugin][user] self.core.db.removeAccount(plugin, user) - self.core.eventManager.dispatchEvent("accountDeleted", plugin, user) + self.core.eventManager.dispatchEvent("account:deleted", plugin, user) else: self.core.log.debug("Remove non existing account %s %s" % (plugin, user)) @@ -137,4 +137,4 @@ class AccountManager: acc.getAccountInfo(True) def sendChange(self, plugin, name): - self.core.eventManager.dispatchEvent("accountUpdated", plugin, name)
\ No newline at end of file + self.core.eventManager.dispatchEvent("account:updated", plugin, name)
\ No newline at end of file |