We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7d4e75 commit 2cfa37dCopy full SHA for 2cfa37d
roundup/cgi/client.py
@@ -1,4 +1,4 @@
1
-# $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 $
2
3
__doc__ = """
4
WWW request handler (also used in the stand-alone server).
@@ -125,7 +125,7 @@ def main(self):
125
except SendFile, designator:
126
self.serve_file(designator)
127
except SendStaticFile, file:
128
- self.serve_static_file(file)
+ self.serve_static_file(str(file))
129
except Unauthorised, message:
130
self.write(self.template('page.unauthorised',
131
error_message=message))
0 commit comments