Mercurial > p > roundup > code
changeset 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 | cc62d7e4efae |
| children | 16498e77e3ff |
| files | roundup/cgi/client.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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))
