summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-09-19 12:51:42 +0200
committerChristian Poessinger <christian@poessinger.com>2021-09-19 12:52:35 +0200
commita9f265109d3031b9513d7f8220fc293166c2bb0a (patch)
treec1d95a1f7d4bfc05def019209ef339796be13144
parente3ff2904a640cab4ffa0b8fd1450dc008bb43bde (diff)
downloadvyos-build-a9f265109d3031b9513d7f8220fc293166c2bb0a.tar.gz
vyos-build-a9f265109d3031b9513d7f8220fc293166c2bb0a.zip
Testsuite: add missing leading 'f' for Python3 format strings
(cherry picked from commit 07555c06452524d860f1093cec6537d3102846f3)
-rwxr-xr-xscripts/check-qemu-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install
index 90cc6017..4f9aed94 100755
--- a/scripts/check-qemu-install
+++ b/scripts/check-qemu-install
@@ -195,7 +195,7 @@ try:
#################################################
log.info('Installing system')
cmd = get_qemu_cmd('TESTVM', kvm, args.disk, args.iso)
- log.debug('Executing command: {cmd}')
+ log.debug(f'Executing command: {cmd}')
c = pexpect.spawn(cmd, logfile=stl)
#################################################