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

lowercase

parent c03856bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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