Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-06-02 23:53:13 +0200
committerAnton Hvornum <anton@hvornum.se>2021-06-02 23:53:13 +0200
commitabcf3ea88a363d0d7055634b28e5b00e1323e6bb (patch)
treefe1ed89c9ee4b61cb32f737cb9f1ecf877429f9d /archinstall
parent6a0f6b161c69a465529e13f061c83e5609bdfaf3 (diff)
Wrong variable name
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/general.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index 7aa307a6..f72311c9 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -265,7 +265,7 @@ class SysCommandWorker:
if not self.pid:
try:
os.execve(self.cmd[0], self.cmd, {**os.environ, **self.environment_vars})
- if storage.arguments.get('debug'):
+ if storage['arguments'].get('debug'):
log(f"Executing: {self.cmd}", level=logging.DEBUG)
except FileNotFoundError:
log(f"{self.cmd[0]} does not exist.", level=logging.ERROR, fg="red")