diff options
| author | Steve Piercy <web@stevepiercy.com> | 2014-03-26 04:11:35 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2014-03-26 04:11:35 -0700 |
| commit | f32bbf92489880f6cd2c26d43dab74d8c84dc299 (patch) | |
| tree | 939f3e45b1f6ea6cb00a044923bdecc9bc80a56e | |
| parent | 26694a797b907d41dfcd71d154251decceed74f9 (diff) | |
| parent | 71c979fb9a89cffdc57a9533a61101483c23b93b (diff) | |
| download | pyramid-f32bbf92489880f6cd2c26d43dab74d8c84dc299.tar.gz pyramid-f32bbf92489880f6cd2c26d43dab74d8c84dc299.tar.bz2 pyramid-f32bbf92489880f6cd2c26d43dab74d8c84dc299.zip | |
Merge pull request #1279 from dhaaker/patch-1
Remove whitespace before the open parenthesis
| -rw-r--r-- | docs/quick_tutorial/hello_world/app.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/hello_world/app.py b/docs/quick_tutorial/hello_world/app.py index 210075023..0a95f9ad3 100644 --- a/docs/quick_tutorial/hello_world/app.py +++ b/docs/quick_tutorial/hello_world/app.py @@ -4,7 +4,7 @@ from pyramid.response import Response def hello_world(request): - print ('Incoming request') + print('Incoming request') return Response('<body><h1>Hello World!</h1></body>') @@ -14,4 +14,4 @@ if __name__ == '__main__': config.add_view(hello_world, route_name='hello') app = config.make_wsgi_app() server = make_server('0.0.0.0', 6543, app) - server.serve_forever()
\ No newline at end of file + server.serve_forever() |
