Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk
diff options
context:
space:
mode:
authorcodefiles <11915375+codefiles@users.noreply.github.com>2023-09-27 01:39:35 -0400
committerGitHub <noreply@github.com>2023-09-27 07:39:35 +0200
commita811decea5db5ce7c26e8e42cd49c233fa959fe1 (patch)
tree920b936b61102768189b55cf44c1e8906f0dba35 /archinstall/lib/disk
parentbc8d4ea2346b09adc641ae51648ac67df939d27a (diff)
Fix mount debug message (#2116)
Diffstat (limited to 'archinstall/lib/disk')
-rw-r--r--archinstall/lib/disk/device_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk/device_handler.py b/archinstall/lib/disk/device_handler.py
index 8af33fde..066d3295 100644
--- a/archinstall/lib/disk/device_handler.py
+++ b/archinstall/lib/disk/device_handler.py
@@ -553,7 +553,7 @@ class DeviceHandler(object):
command = f'mount {mount_fs} {str_options} {dev_path} {target_mountpoint}'
- debug(f'Mounting {dev_path}: command')
+ debug(f'Mounting {dev_path}: {command}')
try:
SysCommand(command)