Break down print line

This commit is contained in:
Tony 2023-04-20 10:23:37 +08:00 committed by Hamish Coleman
parent 4a8a07db9d
commit 789ba52541

View File

@ -464,7 +464,10 @@ def main():
httpd = socketserver.TCPServer(("", args.port), handler) httpd = socketserver.TCPServer(("", args.port), handler)
try: 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() httpd.serve_forever()
except KeyboardInterrupt: except KeyboardInterrupt:
return return