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()