mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-06 06:04:24 -07:00
fix: use single quotes inside f-string
This commit is contained in:
parent
daf5eaa20a
commit
845705665f
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class Connection(ConnectionBase):
|
||||||
super(Connection, self)._connect()
|
super(Connection, self)._connect()
|
||||||
|
|
||||||
if not self._connected:
|
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
|
self._connected = True
|
||||||
|
|
||||||
def _build_exec_command(self, cmd) -> str:
|
def _build_exec_command(self, cmd) -> str:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue