From: richard Date: Tue, 3 Sep 2002 07:13:42 +0000 (+0000) Subject: hrm, wonder how that snuck in X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6ce331cd8ddd9cb786bc873e290ffd6c57b83b6a;p=roundup.git hrm, wonder how that snuck in git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1046 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index 9c786f9..39ceb82 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.8 2002-09-03 03:23:56 richard Exp $ +# $Id: client.py,v 1.9 2002-09-03 07:13:42 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -125,7 +125,7 @@ class Client: except SendFile, designator: self.serve_file(designator) except SendStaticFile, file: - self.serve_static_file(file) + self.serve_static_file(str(file)) except Unauthorised, message: self.write(self.template('page.unauthorised', error_message=message))