
April 25, 2003
7:16 p.m.
William Dode wrote:
class ReportRequest(twisted.web.resource.Resource): """ ReportRequest with forms and cookies """ def render(self, request): session = request.getSession()
try: if request.args["text"]!="": session.text = request.args["text"]
Please correct me if I'm wrong, or out of date, but doesn't request.args contain *lists* of things, always, and not the strings directly? That was what I observed on 1.0.3 anyway, I thought. If that's so, then I think the above test will always pass, as request.args['text'] would contain [''] or [] or something, but never just "". -Peter