Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2019-04-11 22:50:13 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2019-04-11 22:50:13 +0200
commit5c3089e7f904bfd05d1add9189bff5847ca2c7b5 (patch)
treed267d8225c75cef18058a14f393311c02f1ec464 /archinstall.py
parent90b6c5c8f78df7cbdcf0ffd89846f3d04be46bd4 (diff)
Frikin dicts and sizes.. fixed
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 665fcb21..43ebd669 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -167,7 +167,7 @@ class sys_command():
lower = output.lower()
if 'triggers' in self.opts:
- for trigger in self.opts['triggers']:
+ for trigger in list(self.opts['triggers']):
if trigger.lower() in lower:
print('[N] Writing to subsystem: {}'.format(self.opts['triggers'][trigger]))
os.write(child_fd, self.opts['triggers'][trigger])