From bf5a7cdbb0112598dd96b7c992a62432844b76f4 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Mon, 11 Oct 2021 20:37:36 +0000 Subject: [PATCH] devices/loopback: remove extra "'" from print There is an extra `'` character in the print messages that shows which file we are using. --- devices/org.osbuild.loopback | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/org.osbuild.loopback b/devices/org.osbuild.loopback index db1b7abd..a183a57c 100755 --- a/devices/org.osbuild.loopback +++ b/devices/org.osbuild.loopback @@ -88,7 +88,7 @@ class LoopbackService(devices.DeviceService): path = os.path.join(tree, filename.lstrip("/")) self.fd = os.open(path, os.O_RDWR | os.O_CLOEXEC) - print(f"file '{filename}'' opened as {self.fd}") + print(f"file '{filename}' opened as {self.fd}") try: self.lo = self.make_loop(self.fd, start, size, lock) except Exception as error: # pylint: disable: broad-except