Skip to content

Commit 7c37edc

Browse files
committed
Fix host in info message
1 parent 47d18a8 commit 7c37edc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyxtermjs/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def main():
135135
stream=sys.stdout,
136136
level=logging.DEBUG if args.debug else logging.INFO,
137137
)
138-
logging.info(f"serving on http://127.0.0.1:{args.port}")
138+
logging.info(f"serving on http://{args.host}:{args.port}")
139139
socketio.run(app, debug=args.debug, port=args.port, host=args.host)
140140

141141

0 commit comments

Comments
 (0)