summaryrefslogtreecommitdiff
path: root/docs/quick_tour
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-08-21 03:06:45 -0700
committerSteve Piercy <web@stevepiercy.com>2018-08-21 03:06:45 -0700
commit4b84f6e97b321309544513b0697e8b378a57bafc (patch)
tree8e034b1c1c70283d9fbffb4b273c4aecc9ee2547 /docs/quick_tour
parent820a752645b460ea8009b07a75c752ab09c53dec (diff)
downloadpyramid-4b84f6e97b321309544513b0697e8b378a57bafc.tar.gz
pyramid-4b84f6e97b321309544513b0697e8b378a57bafc.tar.bz2
pyramid-4b84f6e97b321309544513b0697e8b378a57bafc.zip
Synch Hello World app with canonical version on trypyramid.com and elsewhere
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__':