0002271: Exception when creating HTML report (place_name must be unicode)

svn: r10890
This commit is contained in:
Brian Matherly 2008-07-21 03:14:06 +00:00
parent ccef30cf3b
commit c32446a121

View File

@ -1551,7 +1551,7 @@ def place_name(db, place_handle):
place = db.get_place_from_handle(place_handle).get_title()
else:
place = ""
return place
return unicode(place)
#-------------------------------------------------------------------------
#