[BangPypers] cgi help

Kenneth Gonsalves lawgon at au-kbc.org
Wed Oct 6 12:15:35 CEST 2010


On Wed, 2010-10-06 at 15:33 +0530, Kenneth Gonsalves wrote:
> > It only returns the header and a blank page. 
> 
> one error is that lines 19 and 20 should be unindented. The other
> error,
> I cannot understand - it says:
> 'module does not have attribute escape', if the cgi.escape() wrapper
> is
> removed the code runs. But cgi module *does* have an escape - so why
> this error? 

weird, this works:
>>> print cgi.escape("abc")
abc

but it does not work in this code snippet:

#!/usr/bin/env python
import cgi

print cgi.escape("abc")

-- 
regards
Kenneth Gonsalves



More information about the BangPypers mailing list