fix: use single quotes inside f-string

pull/9659/head
Peter Siegel 2025-01-31 17:04:19 +01:00
parent daf5eaa20a
commit 845705665f
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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: