summaryrefslogtreecommitdiff
path: root/docs/quick_tour/hello_world/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/quick_tour/hello_world/app.py')
-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__':