From 845705665fbc1185145f4fe6207707852cce8b64 Mon Sep 17 00:00:00 2001 From: Peter Siegel Date: Fri, 31 Jan 2025 17:04:19 +0100 Subject: [PATCH] fix: use single quotes inside f-string --- plugins/connection/lxd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/connection/lxd.py b/plugins/connection/lxd.py index ce980dcac5..e9226ecc6f 100644 --- a/plugins/connection/lxd.py +++ b/plugins/connection/lxd.py @@ -103,7 +103,7 @@ class Connection(ConnectionBase): super(Connection, self)._connect() if not self._connected: - self._display.vvv(f"ESTABLISH LXD CONNECTION FOR USER: {self.get_option("remote_user")}", host=self._host()) + self._display.vvv(f"ESTABLISH LXD CONNECTION FOR USER: {self.get_option('remote_user')}", host=self._host()) self._connected = True def _build_exec_command(self, cmd) -> str: