Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-01-06 16:57:50 +0100
committerGitHub <noreply@github.com>2022-01-06 16:57:50 +0100
commit015cd2a59fbdf3316ddfb7546b884157ad00c7fe (patch)
tree5d8e867eb2820886bc24890ea70bded557756d16 /archinstall/lib
parent33c27db1ba1c286b3f3dc27a39770b17919e0a02 (diff)
Update simple_menu.py
Diffstat (limited to 'archinstall/lib')
-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"