Michael Merickel
2018-10-10 851c368e3c158e264358de10446f5b5de240e534
README.rst
@@ -24,14 +24,14 @@
    from pyramid.response import Response
    def hello_world(request):
        return Response('Hello %(name)s!' % request.matchdict)
        return Response('Hello World!')
    if __name__ == '__main__':
        with Configurator() as config:
            config.add_route('hello', '/hello/{name}')
            config.add_route('hello', '/')
            config.add_view(hello_world, route_name='hello')
            app = config.make_wsgi_app()
        server = make_server('0.0.0.0', 8080, app)
        server = make_server('0.0.0.0', 6543, app)
        server.serve_forever()
Pyramid is a project of the `Pylons Project <https://pylonsproject.org>`_.