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

svn: r10891
This commit is contained in:
Brian Matherly 2008-07-21 03:17:53 +00:00
parent 2f04e98374
commit 8fb9097815

View File

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