mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
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:
parent
1235e60a29
commit
4aa9f76d06
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue