summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2011-11-29 18:01:07 -0800
committerMichael Merickel <michael@merickel.org>2011-11-29 18:01:07 -0800
commit0551f581be6d3bf39f21b3ebdb42db22ad0fd4e4 (patch)
treee15419e49bf4c57922f468334cd945cc5d88ec19 /docs
parentfc70f0a570f0f4765878e5a63e78bb1c0f963d4d (diff)
parent97b888f8f2b01df8b37cbeab229e171324012c0f (diff)
downloadpyramid-0551f581be6d3bf39f21b3ebdb42db22ad0fd4e4.tar.gz
pyramid-0551f581be6d3bf39f21b3ebdb42db22ad0fd4e4.tar.bz2
pyramid-0551f581be6d3bf39f21b3ebdb42db22ad0fd4e4.zip
Merge pull request #361 from cataliniacob/master
Fix helloworld example
Diffstat (limited to 'docs')
-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()