Commit 8941297c authored by w-e-w's avatar w-e-w

lowercase

parent c03856bf
......@@ -147,7 +147,7 @@ def apply_face_restore(p, opt, x):
def apply_override(field, boolean: bool = False):
def fun(p, x, xs):
if boolean:
x = True if x == "True" else False
x = True if x.lower() == "true" else False
p.override_settings[field] = x
return fun
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment