5752: Store tag names as unicode

svn: r19630
This commit is contained in:
Nick Hall
2012-05-23 13:21:22 +00:00
parent 30d1a1f2f8
commit 06a4af4fce
4 changed files with 9 additions and 9 deletions

View File

@@ -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():