Skip to content

Commit 28ea52f

Browse files
computer can't say no
1 parent 3876877 commit 28ea52f

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)