Skip to content

Commit

Permalink
fix prot must be integer error
Browse files Browse the repository at this point in the history
  • Loading branch information
d0u9 committed Feb 5, 2018
1 parent db1386d commit 0189e60
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions youtube_dl_webui/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ def __init__(self, msg_cli, host, port):
self.port = port

def run(self):
app.run(host=self.host, port=self.port, use_reloader=False)
# app.run(host='0.0.0.0', port=5000, use_reloader=False)
app.run(host=self.host, port=int(self.port), use_reloader=False)


0 comments on commit 0189e60

Please sign in to comment.