Commit cbcde99e authored by Yoshinori Okuji's avatar Yoshinori Okuji

Make sure that an argument to the format string of the debug message is converted into a string.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@224 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 79ec67cf
......@@ -78,7 +78,7 @@ class IdTool(UniqueObject, Folder):
new ids. It would be nice to have a management page giving the list
of id_group with each time the last_id and the class generator
"""
LOG('generateNewId',0,'id_group: %s' % id_group)
LOG('generateNewId',0,'id_group: %s' % str(id_group))
if not hasattr(self,'dict_ids'):
self.dict_ids = PersistentMapping()
......
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