summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/narr/helloworld.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/helloworld.py b/docs/narr/helloworld.py
index 93a403a13..7c26c8cdc 100644
--- a/docs/narr/helloworld.py
+++ b/docs/narr/helloworld.py
@@ -10,6 +10,6 @@ if __name__ == '__main__':
config.add_route('hello', '/hello/{name}')
config.add_view(hello_world, route_name='hello')
app = config.make_wsgi_app()
- server = make_server('0.0.0.0', 8080)
+ server = make_server('0.0.0.0', 8080, app)
server.serve_forever()