Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archinstall/lib/simple_menu.py2
1 files changed, 1 insertions, 1 deletions
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"