From c9c92398afed8a1068d1ef40301381ba23897534 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 6 Dec 2011 02:35:03 -0500 Subject: [PATCH] fix example in about page; closes #369 (please be patient, it may take a while for it to show up live) --- pylonshq/templates/pages/projects/pyramid/about.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylonshq/templates/pages/projects/pyramid/about.rst b/pylonshq/templates/pages/projects/pyramid/about.rst index 6c6c2a3..42053cf 100644 --- a/pylonshq/templates/pages/projects/pyramid/about.rst +++ b/pylonshq/templates/pages/projects/pyramid/about.rst @@ -22,7 +22,7 @@ can be used in a wide variety of circumstances. 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()