Skip to content

Commit 8576167

Browse files
Update app.py
1 parent 7f3cb77 commit 8576167

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ def hello():
1818
name = request.form.get('name')
1919

2020
if name:
21-
print('Request for hello page received with name=%s' % name)
21+
print('The request for hello page received with name=%s' % name)
2222
return render_template('hello.html', name = name)
2323
else:
24-
print('Request for hello page received with no name or blank name -- redirecting')
24+
print('The request for hello page received with no name or blank name -- redirecting')
2525
return redirect(url_for('index'))
2626

2727

2828
if __name__ == '__main__':
29-
app.run()
29+
app.run()

0 commit comments

Comments
 (0)