diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 23:27:15 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 23:27:15 +0200 |
commit | a41005592621d53a6cf8d0194b47a7571906312e (patch) | |
tree | 45d66f743663a3474f77229032cab749ea588bef | |
parent | Merge pull request #5 from ardi69/0.4.10 (diff) | |
parent | fix: config cast (diff) | |
download | pyload-a41005592621d53a6cf8d0194b47a7571906312e.tar.xz |
Merge pull request #6 from ardi69/0.4.10
hotfix
-rw-r--r-- | pyload/config/Parser.py | 1 |
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("]"): |