diff options
author | Paul King <devnull@localhost> | 2011-05-13 22:46:04 +0200 |
---|---|---|
committer | Paul King <devnull@localhost> | 2011-05-13 22:46:04 +0200 |
commit | 5fca4557a88b2292ffb2bdcfc968fc3d0da9459d (patch) | |
tree | 32d1151e820f187c8104f3ed5079c905dd5cbcb6 /module/ConfigParser.py | |
parent | comment must be preceded by whitespace (diff) | |
download | pyload-5fca4557a88b2292ffb2bdcfc968fc3d0da9459d.tar.xz |
fix last commit
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 81336e119..5804a15cf 100644 --- a/module/ConfigParser.py +++ b/module/ConfigParser.py @@ -129,7 +129,7 @@ class ConfigParser: line = line.rpartition("#") # removes comments if line[1]: line = line[0] - else: rpartition + else: line = line[2] line = line.strip() |