summaryrefslogtreecommitdiffstats
path: root/module/AccountManager.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-09-11 22:59:07 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-09-11 22:59:07 +0200
commit5ce680890ba57c10ae8cd7a41be2666a35c96888 (patch)
treef71181603e927072e523ef84a2e21601bd2ec034 /module/AccountManager.py
parentaccount parser fix (diff)
downloadpyload-5ce680890ba57c10ae8cd7a41be2666a35c96888.tar.xz
additional fix
Diffstat (limited to 'module/AccountManager.py')
-rw-r--r--module/AccountManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/AccountManager.py b/module/AccountManager.py
index 9c42d1ebe..46f573f68 100644
--- a/module/AccountManager.py
+++ b/module/AccountManager.py
@@ -99,7 +99,7 @@ class AccountManager():
if line.startswith("#"): continue
if line.startswith("version"): continue
- if line.endswith(":"):
+ if line.endswith(":") and line.count(":") == 1:
plugin = line[:-1]
self.accounts[plugin] = {}