Browse Source

Break down print line

pull/1105/head
Tony 1 year ago
committed by Hamish Coleman
parent
commit
789ba52541
  1. 5
      scripts/n2n-httpd

5
scripts/n2n-httpd

@ -464,7 +464,10 @@ def main():
httpd = socketserver.TCPServer(("", args.port), handler)
try:
print(f"Serving HTTP at port {args.port} (http://localhost:{args.port}/) ...")
print(
f'Serving HTTP at port {args.port} '
f'(http://localhost:{args.port}/) ...'
)
httpd.serve_forever()
except KeyboardInterrupt:
return

Loading…
Cancel
Save