Skip to content

Commit

Permalink
fix defaults shown with 'xpra --help' (aka '-h')
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jul 16, 2021
1 parent 0a0d976 commit 955d6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/scripts/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def enabled_or_auto(v):

def bool_or(v, other_value, true_str, false_str, other_str):
vs = str(v).lower()
if vs==other_value:
if vs==str(other_value).lower():
return other_str
bv = parse_bool("", v)
return enabled_str(bv, true_str, false_str)
Expand Down

0 comments on commit 955d6c4

Please sign in to comment.