Changes between Version 19 and Version 20 of EggCookingTutorialTrac0.11

Show
Ignore:
Author:
dawn110110@gmail.com (IP: 0.0.0.0)
Timestamp:
02/23/12 05:55:27 (1 year ago)
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)