summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-16 23:27:15 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-16 23:27:15 +0200
commita41005592621d53a6cf8d0194b47a7571906312e (patch)
tree45d66f743663a3474f77229032cab749ea588bef
parentMerge pull request #5 from ardi69/0.4.10 (diff)
parentfix: config cast (diff)
downloadpyload-a41005592621d53a6cf8d0194b47a7571906312e.tar.xz
Merge pull request #6 from ardi69/0.4.10
hotfix
-rw-r--r--pyload/config/Parser.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyload/config/Parser.py b/pyload/config/Parser.py
index bdfc1a2e7..bad512a5f 100644
--- a/pyload/config/Parser.py
+++ b/pyload/config/Parser.py
@@ -159,6 +159,7 @@ class ConfigParser(object):
typ, none, option = content.strip().rpartition(" ")
value = value.strip()
+ typ = typ.strip()
if value.startswith("["):
if value.endswith("]"):