summaryrefslogtreecommitdiff
path: root/docs/source/generate_commands.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-04-24 09:20:22 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-04-24 09:20:22 -0700
commitecb5d076b52089638c85330655cdb9755fd876e6 (patch)
tree5a4ec3d6a4f23b4049da2c0877af138e986c690c /docs/source/generate_commands.py
parentbd7a5051e4aefb8ad1a8eea7f7b477d4038fd7de (diff)
parent1708fd59ed2a44bd543d510a4895aa95e30c9af3 (diff)
Merge remote-tracking branch 'bignose/wip/issue/python3-codeclimate' into py3k
One small conflict caused by "db/utils: correctly handle 8bit encoded mail"
Diffstat (limited to 'docs/source/generate_commands.py')
-rwxr-xr-xdocs/source/generate_commands.py4
1 files changed, 2 insertions, 2 deletions
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'