Skip to content

Commit

Permalink
Fix host in info message
Browse files Browse the repository at this point in the history
  • Loading branch information
lochel committed Nov 12, 2021
1 parent 47d18a8 commit 7c37edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyxtermjs/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def main():
stream=sys.stdout,
level=logging.DEBUG if args.debug else logging.INFO,
)
logging.info(f"serving on http://127.0.0.1:{args.port}")
logging.info(f"serving on http://{args.host}:{args.port}")
socketio.run(app, debug=args.debug, port=args.port, host=args.host)


Expand Down

0 comments on commit 7c37edc

Please sign in to comment.