5752: Store tag names as unicode
svn: r19631
This commit is contained in:
@@ -241,7 +241,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:
|
||||
|
||||
@@ -1804,12 +1804,12 @@ class TestcaseGenerator(tool.BatchTool):
|
||||
else:
|
||||
result = ""
|
||||
|
||||
if type <> self.TAG:
|
||||
if self.options.handler.options_dict['specialchars']:
|
||||
result = result + u"ä<ö&ü%ß'\""
|
||||
if self.options.handler.options_dict['add_serial']:
|
||||
result = result + "#+#%06d#-#" % self.text_serial_number
|
||||
self.text_serial_number = self.text_serial_number + 1
|
||||
if self.options.handler.options_dict['specialchars']:
|
||||
result = result + u"ä<ö&ü%ß'\""
|
||||
|
||||
if self.options.handler.options_dict['add_serial'] and type <> self.TAG:
|
||||
result = result + "#+#%06d#-#" % self.text_serial_number
|
||||
self.text_serial_number = self.text_serial_number + 1
|
||||
|
||||
if not type:
|
||||
type = self.SHORT
|
||||
|
||||
Reference in New Issue
Block a user