index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Kian-Meng Ang <kianmeng.ang@gmail.com> | 2022-05-29 15:31:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-29 09:31:18 +0200 |
commit | 2de153003ed5de1018639070fabc9c9e583c49d1 (patch) | |
tree | 3bf487686ba2aaa5d469af77ef18998efdcab941 /archinstall/lib/user_interaction/backwards_compatible_conf.py | |
parent | b2f85889a7a935a4d9638fe0fec5aac45e721b09 (diff) |
-rw-r--r-- | archinstall/lib/user_interaction/backwards_compatible_conf.py | 2 |
diff --git a/archinstall/lib/user_interaction/backwards_compatible_conf.py b/archinstall/lib/user_interaction/backwards_compatible_conf.py index d91690eb..296572d2 100644 --- a/archinstall/lib/user_interaction/backwards_compatible_conf.py +++ b/archinstall/lib/user_interaction/backwards_compatible_conf.py @@ -40,7 +40,7 @@ def generic_select( # We check that the options are iterable. If not we abort. Else we copy them to lists # it options is a dictionary we use the values as entries of the list # if options is a string object, each character becomes an entry - # if options is a list, we implictily build a copy to mantain immutability + # if options is a list, we implictily build a copy to maintain immutability if not isinstance(p_options, Iterable): log(f"Objects of type {type(p_options)} is not iterable, and are not supported at generic_select", fg="red") log(f"invalid parameter at Menu() call was at <{sys._getframe(1).f_code.co_name}>", level=logging.WARNING) |