[Zope-Checkins] CVS: Zope/lib/python/ZPublisher - Publish.py:1.164

Andreas Jung andreas@andreas-jung.com
Fri, 18 Apr 2003 09:51:22 -0400


Update of /cvs-repository/Zope/lib/python/ZPublisher
In directory cvs.zope.org:/tmp/cvs-serv32717/lib/python/ZPublisher

Modified Files:
	Publish.py 
Log Message:
asyncore is no longer shipped with Zope


=== Zope/lib/python/ZPublisher/Publish.py 1.163 => 1.164 ===
--- Zope/lib/python/ZPublisher/Publish.py:1.163	Fri Mar 21 17:00:56 2003
+++ Zope/lib/python/ZPublisher/Publish.py	Fri Apr 18 09:51:21 2003
@@ -111,7 +111,7 @@
             sm = getattr(response, "setMessage", None)
 
         if sm is not None:
-            from ZServer.medusa.asyncore import compact_traceback
+            from asyncore import compact_traceback
             cl,val= sys.exc_info()[:2]
             sm('%s: %s %s' % (getattr(cl,'__name__',cl), val, debug_mode and compact_traceback()[-1] or ''))