Skip to content

Commit

Permalink
drakrun/net: Add forgotten f-string specifier (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
chivay authored May 26, 2021
1 parent 0e3d4d2 commit b97e5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drakrun/drakrun/networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def stop_dnsmasq(vm_id: int):
os.kill(dnsmasq_pid, signal.SIGTERM)
log.info(f"Stopped dnsmasq of vm-{vm_id}")
except OSError:
log.info("dnsmasq-vm{vm_id} is already stopped")
log.info(f"dnsmasq-vm{vm_id} is already stopped")


def setup_vm_network(vm_id: int, net_enable: int, out_interface: str, dns_server: str):
Expand Down

0 comments on commit b97e5c4

Please sign in to comment.