From e98be0c1b4ae337f1199c9e02bc83ad497ab10f7 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Sun, 9 Jul 2006 12:32:46 -0800 Subject: [PATCH] fix construction of the backtrace printer.. [git-p4: depot-paths = "//depot/": change = 867] --- shoutcast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shoutcast.py b/shoutcast.py index 31196a7..8c73145 100644 --- a/shoutcast.py +++ b/shoutcast.py @@ -177,7 +177,7 @@ class ShoutProxy(resource.Resource): self.fetchingurls = False def dump_exc(self): - exc = StringIO() + exc = StringIO.StringIO() traceback.print_exc(file=exc) exc.seek(0) self.request.setHeader('content-type', 'text/html')