fix pep8 issue

This commit is contained in:
Sean Dague 2017-01-16 10:22:20 -05:00
parent 79f8f551c3
commit 7e7ffec87e
1 changed files with 2 additions and 1 deletions

View File

@ -102,7 +102,8 @@ class IniFile(object):
def _do_uncomment(writer, line):
writer.write(re.sub("^#\s*", "", line))
self._at_existing_key(section, name, _do_uncomment, match="#\s*%s\s*\=")
self._at_existing_key(section, name, _do_uncomment,
match="#\s*%s\s*\=")
def set(self, section, name, value):
def _do_set(writer, line):