Fix config save line parsing without values
This commit is contained in:
parent
461f9c7ad6
commit
0244db9182
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ class Config(object):
|
||||||
for line in lines:
|
for line in lines:
|
||||||
if line.strip() == "[global]":
|
if line.strip() == "[global]":
|
||||||
global_line_i = i
|
global_line_i = i
|
||||||
if line.startswith(key + " = "):
|
if line.startswith(key + " ="):
|
||||||
key_line_i = i
|
key_line_i = i
|
||||||
i += 1
|
i += 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue