mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-21 16:39:38 +08: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
@ -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…
x
Reference in New Issue
Block a user