Michael Merickel
2018-10-18 41f103af2745c336a3bcdc715e70ef3cb5d1e545
README.rst
@@ -1,13 +1,13 @@
Pyramid
=======
.. image:: https://travis-ci.org/Pylons/pyramid.png?branch=master
.. image:: https://travis-ci.org/Pylons/pyramid.png?branch=1.10-branch
        :target: https://travis-ci.org/Pylons/pyramid
        :alt: master Travis CI Status
        :alt: 1.10-branch Travis CI Status
.. image:: https://readthedocs.org/projects/pyramid/badge/?version=master
        :target: https://docs.pylonsproject.org/projects/pyramid/en/master
        :alt: master Documentation Status
.. image:: https://readthedocs.org/projects/pyramid/badge/?version=1.10-branch
        :target: https://docs.pylonsproject.org/projects/pyramid/en/1.10-branch
        :alt: 1.10-branch Documentation Status
.. image:: https://img.shields.io/badge/irc-freenode-blue.svg
        :target: https://webchat.freenode.net/?channels=pyramid
@@ -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>`_.