mirror of
https://github.com/ntop/n2n.git
synced 2024-04-21 16:31:34 +00:00
Break down print line
This commit is contained in:
+5
-2
@@ -433,7 +433,7 @@ class SimpleHandler(http.server.BaseHTTPRequestHandler):
|
||||
|
||||
def main():
|
||||
ap = argparse.ArgumentParser(
|
||||
description='Control the running local n2n edge via http')
|
||||
description='Control the running local n2n edge via http')
|
||||
ap.add_argument('-t', '--mgmtport', action='store', default=5644,
|
||||
help='Management Port (default=5644)', type=int)
|
||||
ap.add_argument('--snmgmtport', action='store', default=5645,
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user