index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-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" |