This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.araujo
Recipients eric.araujo, eric.smith, phf
Date 2010-07-02.12:50:27
SpamBayes Score 0.0
Marked as misclassified No
Message-id <1278075028.95.0.779808109151.issue9140@psf.upfronthosting.co.za>
In-reply-to
Content
To address the OP’s problem, super can be removed:

-    super(Handler, self).do_GET()
+    Handler.do_GET(self)
History
Date User Action Args
2012-09-20 06:13:50serhiy.storchakasetspambayes_score: 0.700309 -> 0.0
2010-07-02 12:50:29eric.araujosetrecipients: + eric.araujo, eric.smith, phf
2010-07-02 12:50:28eric.araujosetmessageid: <1278075028.95.0.779808109151.issue9140@psf.upfronthosting.co.za>
2010-07-02 12:50:27eric.araujolinkissue9140 messages
2010-07-02 12:50:27eric.araujocreate