5752: Store tag names as unicode
svn: r19629
This commit is contained in:
parent
076231fffc
commit
dd3f0e1039
@ -234,7 +234,7 @@ def convert_marker(self, marker_field):
|
||||
"""Convert a marker into a tag."""
|
||||
marker = MarkerType()
|
||||
marker.unserialize(marker_field)
|
||||
tag_name = str(marker)
|
||||
tag_name = unicode(marker)
|
||||
|
||||
if tag_name != '':
|
||||
if tag_name not in self.tags:
|
||||
|
@ -550,7 +550,7 @@ class EditTag(object):
|
||||
"""
|
||||
Save the changes made to the tag.
|
||||
"""
|
||||
self.tag.set_name(self.entry.get_text())
|
||||
self.tag.set_name(unicode(self.entry.get_text()))
|
||||
self.tag.set_color(self.color.get_color().to_string())
|
||||
|
||||
if not self.tag.get_name():
|
||||
|
@ -240,7 +240,7 @@ class NotRelated(tool.ActivePersonTool, ManagedWindow.ManagedWindow) :
|
||||
def applyTagClicked(self, button) :
|
||||
progress = None
|
||||
rows = self.treeSelection.count_selected_rows()
|
||||
tag_name = self.tagcombo.get_active_text()
|
||||
tag_name = unicode(self.tagcombo.get_active_text())
|
||||
|
||||
# start the db transaction
|
||||
with DbTxn("Tag not related", self.db) as transaction:
|
||||
|
Loading…
x
Reference in New Issue
Block a user