diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-06 22:24:17 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-06 22:24:17 +0200 |
commit | cac52bbf8b0e928a83a29b744bff20240c8e7354 (patch) | |
tree | b53689d1269f95dfda758879e7206d1c20cb5012 /module/AccountManager.py | |
parent | closed #147 (diff) | |
download | pyload-cac52bbf8b0e928a83a29b744bff20240c8e7354.tar.xz |
Diffstat (limited to 'module/AccountManager.py')
-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 5dedacf3c..c155edfae 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]] = [option[1]] if len(option) < 3 else option[1:] + self.accounts[plugin][name]["options"][option[0]] = True if len(option) < 2 else ([option[1]] if len(option) < 3 else option[1:]) elif ":" in line: name, sep, pw = line.partition(":") |