Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/minimal.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-10-20 20:39:46 +0200
committerGitHub <noreply@github.com>2020-10-20 20:39:46 +0200
commit2fc51d540a78da3d7cf24b595a611f45915a55d0 (patch)
tree4e2b46493fadf9cf777e9371545a2e93d1510b17 /examples/minimal.py
parentf32f1e238a0a36b0d1b5220df6f6f053c6c4168c (diff)
parent5ded22a5d0f5fb1cf1d4d95945f655e8b6a33896 (diff)
Merge pull request #57 from vamega/fixup
Fix minor issues like typos and code style violations.
Diffstat (limited to 'examples/minimal.py')
-rw-r--r--examples/minimal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/minimal.py b/examples/minimal.py
index 8bb8ed44..664bad0d 100644
--- a/examples/minimal.py
+++ b/examples/minimal.py
@@ -1,8 +1,8 @@
import archinstall, getpass
# Unmount and close previous runs
-archinstall.sys_command(f'umount -R /mnt', surpress_errors=True)
-archinstall.sys_command(f'cryptsetup close /dev/mapper/luksloop', surpress_errors=True)
+archinstall.sys_command(f'umount -R /mnt', suppress_errors=True)
+archinstall.sys_command(f'cryptsetup close /dev/mapper/luksloop', suppress_errors=True)
# Select a harddrive and a disk password
harddrive = archinstall.select_disk(archinstall.all_disks())