Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/translationhandler.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-11-04 17:25:14 +0100
committerGitHub <noreply@github.com>2022-11-04 17:25:14 +0100
commit9db6a25a08cf9a28bd848a416b105495ad9a5b0d (patch)
treefaac9f9f48895539a4063731ef9e381c272d37ff /archinstall/lib/translationhandler.py
parent16ca69540cc1ac8a28b7007aefe628cf24d2c395 (diff)
Fixed broken imports (#1548)
Diffstat (limited to 'archinstall/lib/translationhandler.py')
-rw-r--r--archinstall/lib/translationhandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/translationhandler.py b/archinstall/lib/translationhandler.py
index ef33b8ec..1a3ed85f 100644
--- a/archinstall/lib/translationhandler.py
+++ b/archinstall/lib/translationhandler.py
@@ -110,7 +110,7 @@ class TranslationHandler:
"""
Set the provided font as the new terminal font
"""
- from archinstall import SysCommand, log
+ from .general import SysCommand, log
try:
log(f'Setting font: {font}', level=logging.DEBUG)
SysCommand(f'setfont {font}')