Commit 53c10f57 authored by 's avatar

Merged fmt string fix from 2.2 branch

parent 4972192a
......@@ -289,9 +289,9 @@ class zhttp_handler:
return producers.simple_producer("""
<li>Zope Handler
<ul>
<li><b>Published Module:</b> % s
<li><b>Hits:</b> %d
</ul>""" %(self.module_name,int(self.hits))
<li><b>Published Module:</b> %s
<li><b>Hits:</b> %s
</ul>""" %(self.module_name, self.hits)
)
# put and post collection methods
......
......@@ -289,9 +289,9 @@ class zhttp_handler:
return producers.simple_producer("""
<li>Zope Handler
<ul>
<li><b>Published Module:</b> % s
<li><b>Hits:</b> %d
</ul>""" %(self.module_name,int(self.hits))
<li><b>Published Module:</b> %s
<li><b>Hits:</b> %s
</ul>""" %(self.module_name, self.hits)
)
# put and post collection methods
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment