Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 1027:9990a635de03
hrm, wonder how that snuck in
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 03 Sep 2002 07:13:42 +0000 |
| parents | b0527d9c8e11 |
| children | c3e391d9c4e9 |
line wrap: on
line diff
--- a/roundup/cgi/client.py Tue Sep 03 06:08:50 2002 +0000 +++ b/roundup/cgi/client.py Tue Sep 03 07:13:42 2002 +0000 @@ -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 @@ 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))
