From 25df148175278a087399b11748afefc71d4e809c Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sat, 11 Sep 2010 22:46:26 +0200 Subject: account parser fix --- module/AccountManager.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'module/AccountManager.py') 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": []} -- cgit v1.2.3