wsgi: removing semicolon

Fix the wrong example for calling Response().

Change-Id: I8c5fdc5aafa6f388ac92b4ca658a0fe7c0f6e7da
This commit is contained in:
Wei Jiangang
2015-09-24 17:42:08 +08:00
parent 5d34c572cb
commit 9464a24358

View File

@@ -330,7 +330,7 @@ class Application(object):
# Option 3: a webob Response object (in case you need to play with
# headers, or you want to be treated like an iterable, or or or)
res = Response();
res = Response()
res.app_iter = open('somefile')
# Option 4: any wsgi app to be run next