wsgi-served page does not refresh

Posted by Steve on Stack Overflow See other posts from Stack Overflow or by Steve
Published on 2010-06-13T06:05:51Z Indexed on 2010/06/13 6:12 UTC
Read the original article Hit count: 223

Filed under:
|
|
|
|

I recently got my first app to work in uWSGI with Cherokee. I used the following code taken from the uWSGI docs:

def application(environ, start_response):
  start_response('200 OK', [('Content-Type', 'text/plain')])
  yield 'Hello World\n'

The page correctly reads Hello World. When I change that text to New Thing and refresh, nothing changes. What am I forgetting?

What I've tried:

  1. clearing browser history and cache
  2. stopping and starting Cherokee

© Stack Overflow or respective owner

Related posts about python

Related posts about beginner