Skip to content

Commit 654ecf3

Browse files
author
Richard Jones
committed
minor bugfix
1 parent d9a946f commit 654ecf3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

roundup/htmltemplate.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: htmltemplate.py,v 1.99 2002-07-17 12:39:10 gmcm Exp $
18+
# $Id: htmltemplate.py,v 1.100 2002-07-18 07:01:54 richard Exp $
1919

2020
__doc__ = """
2121
Template engine.
@@ -354,7 +354,7 @@ def do_menu(self, property, size=None, height=None, showid=0,
354354
m = []
355355
for propname in additional:
356356
m.append(linkcl.get(optionid, propname))
357-
lab = lab + ' (%s)'%', '.join(m)
357+
lab = lab + ' (%s)'%', '.join(map(str, m))
358358
lab = cgi.escape(lab)
359359
l.append('<option %svalue="%s">%s</option>'%(s, optionid, lab))
360360
l.append('</select>')
@@ -1341,6 +1341,9 @@ def render(self, form):
13411341

13421342
#
13431343
# $Log: not supported by cvs2svn $
1344+
# Revision 1.99 2002/07/17 12:39:10 gmcm
1345+
# Saving, running & editing queries.
1346+
#
13441347
# Revision 1.98 2002/07/10 00:17:46 richard
13451348
# . added sorting of checklist HTML display
13461349
#

0 commit comments

Comments
 (0)