Skip to content

Commit

Permalink
padronização das aspas
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Deodoro committed Sep 3, 2013
1 parent 20c7bd2 commit db69e2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

@app.route("/")
def home():
return render_template('main.html')
return render_template("main.html")

@app.errorhandler(404)
def page_not_found(e):
return render_template('404.html')
return render_template("404.html")

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

0 comments on commit db69e2c

Please sign in to comment.