Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-11-20 10:32:28 +0100
committerGitHub <noreply@github.com>2021-11-20 10:32:28 +0100
commit627b6b5207beffee2ed9507933cebe780c62a11d (patch)
treeb45506fe0d3157544104fa0821a0f9cf8638dd14
parent5ec690da939ff5b2efb3ba2ffe177cb035c25ee6 (diff)
Incorrect location usage of AVAILABLE_GFX_DRIVERS
#710
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 0d56540a..dd0d54de 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -47,7 +47,7 @@ def load_config():
if archinstall.arguments.get('sys-encoding', None) is not None:
archinstall.arguments['sys-encoding'] = archinstall.arguments.get('sys-encoding', 'utf-8')
if archinstall.arguments.get('gfx_driver', None) is not None:
- archinstall.storage['gfx_driver_packages'] = archinstall.hardware.AVAILABLE_GFX_DRIVERS.get(archinstall.arguments.get('gfx_driver', None), None)
+ archinstall.storage['gfx_driver_packages'] = archinstall.AVAILABLE_GFX_DRIVERS.get(archinstall.arguments.get('gfx_driver', None), None)
if archinstall.arguments.get('servers', None) is not None:
archinstall.storage['_selected_servers'] = archinstall.arguments.get('servers', None)
if archinstall.arguments.get('disk_layouts', None) is not None: