From f12492551cc53eb56c1d02e05bb4678316b4b884 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 6 Oct 2010 22:29:36 +0200 Subject: account config fix --- module/AccountManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/AccountManager.py') diff --git a/module/AccountManager.py b/module/AccountManager.py index c155edfae..6f2d9c186 100644 --- a/module/AccountManager.py +++ b/module/AccountManager.py @@ -103,7 +103,7 @@ class AccountManager(): elif line.startswith("@"): option = line[1:].split() - self.accounts[plugin][name]["options"][option[0]] = True if len(option) < 2 else ([option[1]] if len(option) < 3 else option[1:]) + self.accounts[plugin][name]["options"][option[0]] = [] if len(option) < 2 else ([option[1]] if len(option) < 3 else option[1:]) elif ":" in line: name, sep, pw = line.partition(":") -- cgit v1.2.3