SVN: r25374 - trunk/quixote
Neil Schemenauer <nascheme-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Fri, 15 Oct 2004 13:18:25 -0400
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: nascheme
Date: 2004-10-15 13:16:02 -0400 (Fri, 15 Oct 2004)
New Revision: 25374
Modified:
trunk/quixote/publish.py
Log:
Remove another instance of 'request'.
Modified: trunk/quixote/publish.py
===================================================================
--- trunk/quixote/publish.py 2004-10-15 17:11:34 UTC (rev 25373)
+++ trunk/quixote/publish.py 2004-10-15 17:16:02 UTC (rev 25374)
@@ -506,7 +506,7 @@
output = self.try_publish(request, env.get('PATH_INFO', ''))
except errors.PublishError, exc:
# Exit the publishing loop and return a result right away.
- output = self.finish_interrupted_request(request, exc)
+ output = self.finish_interrupted_request(exc)
except:
# Some other exception, generate error messages to the logs, etc.
output = self.finish_failed_request()