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:
authorAnton Hvornum <anton@hvornum.se>2021-11-23 20:51:40 +0000
committerGitHub <noreply@github.com>2021-11-23 20:51:40 +0000
commit2328570520a4a87f38ca2dad368d679453063a2a (patch)
treed6fe9e139c889085d40510c1bce97ecb97ce282b /examples/guided.py
parent72d02a391dd1f2aedaeaac59b943d8655366bb3e (diff)
parent04c2b19dbe4d95dbca121772433bb2d5a17bbeb2 (diff)
Merge pull request #762 from dylanmtaylor/fix-import
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):