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.
This commit is contained in:
Konrad Borowski 2013-09-25 16:39:22 +02:00
parent 1235e60a29
commit 4aa9f76d06

View file

@ -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"