Changes between Version 19 and Version 20 of EggCookingTutorialTrac0.11


Ignore:
Timestamp:
Feb 23, 2012, 4:55:27 AM (12 years ago)
Author:
dawn
Comment:

correct a mistake ( lack of ')' in the helloworld.py )

Legend:

Unmodified
Added
Removed
Modified
  • EggCookingTutorialTrac0.11

    v19 v20  
    6161        req.send_response(200)
    6262        req.send_header('Content-Type', 'text/plain')
    63         req.send_header('Content-Length', len('content')
     63        req.send_header('Content-Length', len(content))
    6464        req.end_headers()
    6565        req.write(content)