From 2b766949a7f2dd6025c9af3290d01f531130ed2d Mon Sep 17 00:00:00 2001 From: Ben Finney Date: Mon, 23 Apr 2018 16:21:02 +1000 Subject: Reformat a long statement in documentation code. --- docs/source/generate_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/source/generate_commands.py b/docs/source/generate_commands.py index 4ead8c11..5eda4978 100755 --- a/docs/source/generate_commands.py +++ b/docs/source/generate_commands.py @@ -65,8 +65,8 @@ def rstify_parser(parser): for index, a in enumerate(parser._positionals._group_actions): out += " %s: %s" % (index, a.help) if a.choices: - out += ". valid choices are: %s." % ','.join(['\`%s\`' % s for s - in a.choices]) + out += ". valid choices are: %s." % ','.join( + ['\`%s\`' % s for s in a.choices]) if a.default: out += ". defaults to: '%s'." % a.default out += '\n' -- cgit v1.2.3