Skip to content

Commit

Permalink
Merge pull request #22 from lochel/host
Browse files Browse the repository at this point in the history
Fix host in info message
  • Loading branch information
cs01 authored Nov 12, 2021
2 parents af4da0c + 7c37edc commit 2b5fd21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ dist
venv
.vscode
*egg-info*
build
build
__pycache__
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 2b5fd21

Please sign in to comment.