summaryrefslogtreecommitdiff
path: root/docs/quick_tour
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-08-21 12:03:58 -0700
committerGitHub <noreply@github.com>2018-08-21 12:03:58 -0700
commitf1cea823ada61213be36007b888534558e215f86 (patch)
tree8e034b1c1c70283d9fbffb4b273c4aecc9ee2547 /docs/quick_tour
parent820a752645b460ea8009b07a75c752ab09c53dec (diff)
parent4b84f6e97b321309544513b0697e8b378a57bafc (diff)
downloadpyramid-f1cea823ada61213be36007b888534558e215f86.tar.gz
pyramid-f1cea823ada61213be36007b888534558e215f86.tar.bz2
pyramid-f1cea823ada61213be36007b888534558e215f86.zip
Merge pull request #3332 from stevepiercy/hello-world-synch
Synch Hello World app with canonical version on trypyramid.com and el…
Diffstat (limited to 'docs/quick_tour')
-rw-r--r--docs/quick_tour/hello_world/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quick_tour/hello_world/app.py b/docs/quick_tour/hello_world/app.py
index dc6f32310..d384a0620 100644
--- a/docs/quick_tour/hello_world/app.py
+++ b/docs/quick_tour/hello_world/app.py
@@ -4,7 +4,7 @@ from pyramid.response import Response
def hello_world(request):
- return Response('<h1>Hello World!</h1>')
+ return Response('Hello World!')
if __name__ == '__main__':