From b08326d707194d4064d93dd3745d91eff82c2851 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Wed, 1 Dec 2021 20:32:34 +0100 Subject: [PATCH] chroot.py: fix error message --- chroot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chroot.py b/chroot.py index ffb8ef7..d018f6a 100644 --- a/chroot.py +++ b/chroot.py @@ -459,7 +459,7 @@ class Chroot: if not os.path.islink(ld_so_target): os.symlink(os.path.join('/native', 'usr', 'lib', ld_so), ld_so_target) else: - logging.debug('ld-linux.so symlink already exists, skipping for {target_chroot.name}') + logging.debug(f'ld-linux.so symlink already exists, skipping for {self.name}') # TODO: find proper fix rustc = os.path.join(native_chroot.path, 'usr/lib/crossdirect', target_arch, 'rustc')