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 23:36:16 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2019-04-11 23:36:16 +0200
commit311aa08958ca77f2888a00fab8d9fd7d610fd14f (patch)
treedc1a64f0563273f0fd9c64078db388c019ec0c81 /archinstall.py
parenta87b30d2f6fa878049e0f9cc77e0d79db10beaf7 (diff)
More debugging
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 f3aacd19..0d909d0f 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -136,7 +136,7 @@ class sys_command():
def exec(self):
if not self.cmd[0][0] == '/':
- print('[N] Command is not executed with absolute path, trying to find it..')
+ print('[N] Command is not executed with absolute path, trying to find: {}'.format(self.cmd[0]))
o = b''.join(sys_command('/usr/bin/whereis {}'.format(self.cmd[0])).exec())
self.cmd[0] = o.split(b' ')[1].decode('UTF-8')
print('[N] This is what I\'m going with: {}'.format(self.cmd[0]))