index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2022-01-06 16:57:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-06 16:57:50 +0100 |
commit | 015cd2a59fbdf3316ddfb7546b884157ad00c7fe (patch) | |
tree | 5d8e867eb2820886bc24890ea70bded557756d16 /archinstall/lib/simple_menu.py | |
parent | 33c27db1ba1c286b3f3dc27a39770b17919e0a02 (diff) |
-rw-r--r-- | archinstall/lib/simple_menu.py | 2 |
diff --git a/archinstall/lib/simple_menu.py b/archinstall/lib/simple_menu.py index bc78e703..a9d6d7ec 100644 --- a/archinstall/lib/simple_menu.py +++ b/archinstall/lib/simple_menu.py @@ -59,7 +59,7 @@ from typing import ( try: import termios except ImportError as e: - pass # raise NotImplementedError('"{}" is currently not supported.'.format(platform.system())) from e + raise NotImplementedError('"{}" is currently not supported.'.format(platform.system())) from e __author__ = "Ingo Meyer" __email__ = "i.meyer@fz-juelich.de" |