We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f3cb77 commit 8576167Copy full SHA for 8576167
app.py
@@ -18,12 +18,12 @@ def hello():
18
name = request.form.get('name')
19
20
if name:
21
- print('Request for hello page received with name=%s' % name)
+ print('The request for hello page received with name=%s' % name)
22
return render_template('hello.html', name = name)
23
else:
24
- print('Request for hello page received with no name or blank name -- redirecting')
+ print('The request for hello page received with no name or blank name -- redirecting')
25
return redirect(url_for('index'))
26
27
28
if __name__ == '__main__':
29
- app.run()
+ app.run()
0 commit comments