diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-11 22:59:07 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-11 22:59:07 +0200 |
commit | 5ce680890ba57c10ae8cd7a41be2666a35c96888 (patch) | |
tree | f71181603e927072e523ef84a2e21601bd2ec034 /module | |
parent | account parser fix (diff) | |
download | pyload-5ce680890ba57c10ae8cd7a41be2666a35c96888.tar.xz |
additional fix
Diffstat (limited to 'module')
-rw-r--r-- | module/AccountManager.py | 2 |
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] = {} |