aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar Konrad Borowski <glitchmr@myopera.com>2013-09-25 16:39:22 +0200
committerGravatar Konrad Borowski <glitchmr@myopera.com>2013-09-25 16:39:22 +0200
commit4aa9f76d06fb1761df0de22d2b174037d12f0cdb (patch)
treea8047a6a5dc9b61ff859c596d2ac4b729adf2475 /share
parent1235e60a296a80af512cbd5e97c9167eb5226aef (diff)
Fix one element tuple to be actually tuple.
While in this case it doesn't mean much (neither `z` or `-` would be passed to options parser), it makes things possibly less buggy.
Diffstat (limited to 'share')
-rwxr-xr-xshare/tools/create_manpage_completions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/tools/create_manpage_completions.py b/share/tools/create_manpage_completions.py
index 14bf13ee..dc67f4c8 100755
--- a/share/tools/create_manpage_completions.py
+++ b/share/tools/create_manpage_completions.py
@@ -925,7 +925,7 @@ if __name__ == "__main__":
show_progress = True
elif opt in ('-c', '--cleanup-in'):
cleanup_directories.append(value)
- elif opt in ('-z'):
+ elif opt in ('-z',):
DEROFF_ONLY = True
else:
assert False, "unhandled option"