summaryrefslogtreecommitdiffstats
path: root/module/AccountManager.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/AccountManager.py')
-rw-r--r--module/AccountManager.py4
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