summaryrefslogtreecommitdiffstats
path: root/pyload/manager/AccountManager.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 21:20:20 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 21:20:20 +0200
commitf6e5359110f4bd5facc04a98f94acbc41b6e5228 (patch)
tree1f625724951c1b3a848f96c65708f437807f7190 /pyload/manager/AccountManager.py
parent[UpdateManager] Support new plugins structure (diff)
downloadpyload-f6e5359110f4bd5facc04a98f94acbc41b6e5228.tar.xz
Update pyload to the new plugins structure
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