forked from p15670423/monkey
Agent: Use f-strings in _connect_to_island()
This commit is contained in:
parent
ec2d736984
commit
f1bc5f4707
|
@ -144,11 +144,9 @@ class InfectionMonkey:
|
||||||
def _connect_to_island(self):
|
def _connect_to_island(self):
|
||||||
# Sets island's IP and port for monkey to communicate to
|
# Sets island's IP and port for monkey to communicate to
|
||||||
if self._current_server_is_set():
|
if self._current_server_is_set():
|
||||||
logger.debug("Default server set to: %s" % self._control_client.server_address)
|
logger.debug(f"Default server set to: {self._control_client.server_address}")
|
||||||
else:
|
else:
|
||||||
raise Exception(
|
raise Exception(f"Monkey couldn't find server with {self._opts.tunnel} default tunnel.")
|
||||||
"Monkey couldn't find server with {} default tunnel.".format(self._opts.tunnel)
|
|
||||||
)
|
|
||||||
|
|
||||||
self._control_client.wakeup(parent=self._opts.parent)
|
self._control_client.wakeup(parent=self._opts.parent)
|
||||||
self._control_client.load_control_config()
|
self._control_client.load_control_config()
|
||||||
|
|
Loading…
Reference in New Issue