SVN: r25612 - trunk/quixote
David Binger <dbinger-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Tue, 16 Nov 2004 16:25:40 -0500
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dbinger
Date: 2004-11-16 14:23:42 -0500 (Tue, 16 Nov 2004)
New Revision: 25612
Modified:
trunk/quixote/publish.py
Log:
Fix name error.
Modified: trunk/quixote/publish.py
===================================================================
--- trunk/quixote/publish.py 2004-11-16 19:21:54 UTC (rev 25611)
+++ trunk/quixote/publish.py 2004-11-16 19:23:42 UTC (rev 25612)
@@ -236,7 +236,7 @@
self.start_request()
path = request.get_environ('PATH_INFO', '')
if path[:1] != '/':
- raise PublisherError("PATH_INFO should start with '/'")
+ raise PublishError("PATH_INFO should start with '/'")
# split path into components
if '//' in path:
path = self._SLASH_PAT.sub("/", path)