Fix a bug in the config._parse_file function (traceback when parsing empty files)
This commit is contained in:
parent
1349f297f5
commit
4de2dfc72b
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ class Config(RawConfigParser):
|
|||
sections[current_section] = [current_line, current_line]
|
||||
|
||||
current_line += 1
|
||||
if not duplicate_section:
|
||||
if not duplicate_section and current_section:
|
||||
sections[current_section][1] = current_line
|
||||
|
||||
return (sections, lines_before)
|
||||
|
|
Loading…
Reference in a new issue