Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Bent <code+github@jaybent.com>2020-04-03 13:57:13 +0200
committerJay Bent <code+github@jaybent.com>2020-04-03 13:57:13 +0200
commit6c484a6b3f38876e4d2f7fcecf92841dadfdc6b7 (patch)
treed0a6e2021722fe443b2bd12db0d8ea26ca996b77
parentde3c865a04175105187b36c11e0d3ee540c56632 (diff)
Fixed typo breaking local profiles
-rw-r--r--archinstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall.py b/archinstall.py
index 7389d148..086585fb 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -749,9 +749,9 @@ def get_instructions(target, *positionals, **kwargs):
except urllib.error.HTTPError:
print('[N] Could not find remote instructions. Trying local instructions under ./deployments')
log(f'Could not find remote instructions. Trying local instructions under ./deployments', level=4, origin='get_instructions')
- isntructions = get_local_instructions(target, *positionals)
+ instructions = get_local_instructions(target, *positionals)
else:
- isntructions = get_local_instructions(target, *positionals)
+ instructions = get_local_instructions(target, *positionals)
if type(instructions) not in (dict, oDict,):
try: