address flake8 issues

This commit is contained in:
Jon S. Stumpf 2019-05-31 14:53:26 -04:00 committed by David Lord
parent 8577b347a7
commit 4dc9c68d19
23 changed files with 86 additions and 89 deletions

View file

@ -14,7 +14,7 @@ def parse_changelog():
with open("CHANGES.rst") as f:
lineiter = iter(f)
for line in lineiter:
match = re.search("^Version\s+(.*)", line.strip())
match = re.search(r"^Version\s+(.*)", line.strip())
if match is None:
continue