summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-08-10 05:41:34 -0700
committerSteve Piercy <web@stevepiercy.com>2018-08-16 03:50:08 -0700
commit4ef40684be88c892183673cdd4d5281d4535fe6f (patch)
tree2811361e8cb22586290afc36798812daf8f8f44c /README.rst
parent5488da0d165468199f0d07a2ca579b86617fad72 (diff)
downloadpyramid-4ef40684be88c892183673cdd4d5281d4535fe6f.tar.gz
pyramid-4ef40684be88c892183673cdd4d5281d4535fe6f.tar.bz2
pyramid-4ef40684be88c892183673cdd4d5281d4535fe6f.zip
indent 4 spaces
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst28
1 files changed, 14 insertions, 14 deletions
diff --git a/README.rst b/README.rst
index ecc8eb32f..00ec177ca 100644
--- a/README.rst
+++ b/README.rst
@@ -19,20 +19,20 @@ and deployment more fun, more predictable, and more productive.
.. code-block:: python
- from wsgiref.simple_server import make_server
- from pyramid.config import Configurator
- from pyramid.response import Response
-
- def hello_world(request):
- return Response('Hello %(name)s!' % request.matchdict)
-
- if __name__ == '__main__':
- with Configurator() as config:
- 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, app)
- server.serve_forever()
+ from wsgiref.simple_server import make_server
+ from pyramid.config import Configurator
+ from pyramid.response import Response
+
+ def hello_world(request):
+ return Response('Hello %(name)s!' % request.matchdict)
+
+ if __name__ == '__main__':
+ with Configurator() as config:
+ 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, app)
+ server.serve_forever()
Pyramid is a project of the `Pylons Project <https://pylonsproject.org>`_.