summaryrefslogtreecommitdiffstats
path: root/module/AccountManager.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/AccountManager.py')
-rw-r--r--module/AccountManager.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/module/AccountManager.py b/module/AccountManager.py
index 6bfb63820..9c42d1ebe 100644
--- a/module/AccountManager.py
+++ b/module/AccountManager.py
@@ -76,8 +76,9 @@ class AccountManager():
content = f.readlines()
version = content.pop(0)
-
- if int(version.split(":")[1]) < ACC_VERSION:
+ version = version.split(":")[1].strip()
+
+ if not version or int(version) < ACC_VERSION:
copy("accounts.conf", "accounts.backup")
f.close()
f = open("accounts.conf", "wb")
@@ -89,7 +90,7 @@ class AccountManager():
plugin = ""
- account = ""
+ name = ""
for line in content:
line = line.strip()
@@ -107,7 +108,7 @@ class AccountManager():
self.accounts[plugin][name]["options"].append(tuple(option))
elif ":" in line:
- name, pw = line.split(":")[:]
+ name, sep,pw = line.partition(":")
self.accounts[plugin][name] = {"password": pw, "options": []}