Skip to content

Commit

Permalink
fix: rename flasks app.synth to app.run (#74)
Browse files Browse the repository at this point in the history
flasks app.run was accidentally renamed to app.synth in global rename
  • Loading branch information
pfeilbr authored and rix0rrr committed Jul 12, 2019
1 parent 613b463 commit 044a1dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ def hello():
return html.format(name=os.getenv("NAME", "world"), hostname=socket.gethostname())

if __name__ == "__main__":
app.synth()(host='0.0.0.0', port=80)
app.run(host='0.0.0.0', port=80)

0 comments on commit 044a1dc

Please sign in to comment.