Got it fixed. Thanks y'all. I defined a variable out of scope. I ran it on my IDE to discover it. rowNumber was out of scope. Regards. Sent from my BlackBerry wireless device from MTN
-----Original Message----- From: Kenneth Gonsalves <[email protected]> Sender: [email protected] Date: Wed, 06 Oct 2010 15:45:35 To: Bangalore Python Users Group - India<[email protected]> Reply-To: Bangalore Python Users Group - India <[email protected]> Subject: Re: [BangPypers] cgi help 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 _______________________________________________ BangPypers mailing list [email protected] http://mail.python.org/mailman/listinfo/bangpypers _______________________________________________ BangPypers mailing list [email protected] http://mail.python.org/mailman/listinfo/bangpypers
