[Zope3-checkins] CVS: Zope3/src/zope/publisher - browser.py:1.12
Marius Gedminas
mgedmin@codeworks.lt
Tue, 8 Apr 2003 03:30:06 -0400
Update of /cvs-repository/Zope3/src/zope/publisher
In directory cvs.zope.org:/tmp/cvs-serv31630/src/zope/publisher
Modified Files:
browser.py
Log Message:
Small bugfix.
=== Zope3/src/zope/publisher/browser.py 1.11 => 1.12 ===
--- Zope3/src/zope/publisher/browser.py:1.11 Mon Apr 7 07:27:01 2003
+++ Zope3/src/zope/publisher/browser.py Tue Apr 8 03:29:35 2003
@@ -218,7 +218,7 @@
def __str__(self):
L1 = self.__dict__.items()
L1.sort()
- return ", ".join(["%s: %s" for item in L1])
+ return ", ".join(["%s: %s" % item for item in L1])
def __repr__(self):
L1 = self.__dict__.items()