From f7fe1d3b9b98663febad51bd6c09b5a7f7ea3e1f Mon Sep 17 00:00:00 2001
From: Dylan Jay <software@pretaweb.com>
Date: Thu, 25 Aug 2011 07:19:02 +0200
Subject: [PATCH] fix helloworld example

---
 docs/narr/helloworld.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/docs/narr/helloworld.py b/docs/narr/helloworld.py
index 23bb146..ce0fcf9 100644
--- a/docs/narr/helloworld.py
+++ b/docs/narr/helloworld.py
@@ -7,6 +7,6 @@
 if __name__ == '__main__':
    config = Configurator()
    config.add_route('hello', '/hello/{name}')
-   config.add_view(hello_world, route_name='hello')
+   config.add_view(hello_world, route_name='hello', renderer='string')
    app = config.make_wsgi_app()
    serve(app, host='0.0.0.0')
\ No newline at end of file

--
Gitblit v1.9.3