summaryrefslogtreecommitdiffstats
path: root/pyload/manager/AccountManager.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/manager/AccountManager.py')
-rw-r--r--pyload/manager/AccountManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/manager/AccountManager.py b/pyload/manager/AccountManager.py
index d1958f4b6..ec092d740 100644
--- a/pyload/manager/AccountManager.py
+++ b/pyload/manager/AccountManager.py
@@ -36,7 +36,7 @@ class AccountManager:
if plugin in self.accounts:
if plugin not in self.plugins:
try:
- self.plugins[plugin] = self.core.pluginManager.loadClass("accounts", plugin)(self, self.accounts[plugin])
+ self.plugins[plugin] = self.core.pluginManager.loadClass("account", plugin)(self, self.accounts[plugin])
except TypeError: # The account class no longer exists (blacklisted plugin). Skipping the account to avoid crash
return None