diff options
author | 2010-09-28 13:00:46 +0200 | |
---|---|---|
committer | 2010-09-28 13:00:46 +0200 | |
commit | b87e6441bfa4f203d437838d370a48a443f39a66 (patch) | |
tree | 5194e95300224e1e0b1ee5422df9706c1ad8d7fa /module/ConfigParser.py | |
parent | little fixes (diff) | |
download | pyload-b87e6441bfa4f203d437838d370a48a443f39a66.tar.xz |
rs wait time fix
Diffstat (limited to 'module/ConfigParser.py')
-rw-r--r-- | module/ConfigParser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/ConfigParser.py b/module/ConfigParser.py index 81be6c021..32d3caca7 100644 --- a/module/ConfigParser.py +++ b/module/ConfigParser.py @@ -165,7 +165,7 @@ class ConfigParser: desc = desc.replace('"', "").strip() - typ, option = content.split() + typ, none, option = content.rpartition(" ") value = value.strip() |