Skip to content

Commit 4fc1bc5

Browse files
committedFeb 7, 2019
1 parent 24f2fb9 commit 4fc1bc5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎hello_app/views.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
def home():
77
return render_template("home.html")
88

9-
@app.route("/about")
9+
@app.route("/about/")
1010
def about():
1111
return render_template("about.html")
1212

13-
@app.route("/contact")
13+
@app.route("/contact/")
1414
def contact():
1515
return render_template("contact.html")
1616

17-
@app.route("/hello")
17+
@app.route("/hello/")
1818
@app.route("/hello/<name>")
1919
def hello_there(name = None):
2020
return render_template(

0 commit comments

Comments
 (0)