From 139cb94276d41750f168219ab171b4d28e717b65 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 3 Sep 2020 05:38:02 +0200 Subject: flake8 hotfix --- devscripts/make_readme.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'devscripts/make_readme.py') diff --git a/devscripts/make_readme.py b/devscripts/make_readme.py index dc3aa9a74..73f203582 100755 --- a/devscripts/make_readme.py +++ b/devscripts/make_readme.py @@ -14,7 +14,7 @@ with io.open(README_FILE, encoding='utf-8') as f: oldreadme = f.read() header = oldreadme[:oldreadme.index('# OPTIONS')] -#footer = oldreadme[oldreadme.index('# CONFIGURATION'):] +# footer = oldreadme[oldreadme.index('# CONFIGURATION'):] options = helptext[helptext.index(' General Options:') + 19:] options = re.sub(r'(?m)^ (\w.+)$', r'## \1', options) @@ -23,4 +23,4 @@ options = '# OPTIONS\n' + options + '\n' with io.open(README_FILE, 'w', encoding='utf-8') as f: f.write(header) f.write(options) - #f.write(footer) + # f.write(footer) -- cgit v1.2.3