Skip to content

Commit 626bb21

Browse files
authored
Merge pull request robcarver17#1093 from bug-or-feature/computer_cant_say_no
computer can't say no
2 parents 5472457 + 28ea52f commit 626bb21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syscore/genutils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def str2Bool(x: str) -> bool:
104104
return x
105105
if x.lower() in ("t", "true"):
106106
return True
107-
if x.upper() in ("f", "false"):
107+
if x.lower() in ("f", "false"):
108108
return False
109109
raise Exception("%s can't be resolved as a bool" % x)
110110

0 commit comments

Comments
 (0)