Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-11-23 15:27:02 -0500
committerDylan Taylor <dylan@dylanmtaylor.com>2021-11-23 15:27:02 -0500
commit04c2b19dbe4d95dbca121772433bb2d5a17bbeb2 (patch)
treed6fe9e139c889085d40510c1bce97ecb97ce282b /examples/guided.py
parent72d02a391dd1f2aedaeaac59b943d8655366bb3e (diff)
Fix error at end of installation from missing method import
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index e58fd56b..4e90ec54 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -334,7 +334,7 @@ def perform_installation(mountpoint):
if archinstall.arguments.get('ntp', False):
installation.activate_time_syncronization()
- if installation.accessibility_tools_in_use():
+ if archinstall.accessibility_tools_in_use():
installation.enable_espeakup()
if (root_pw := archinstall.arguments.get('!root-password', None)) and len(root_pw):