mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 14:35:46 +02:00
Fix for lp:1241515, allow unicode catalog titles when saving presets.
This commit is contained in:
parent
c01a7c7812
commit
9f011a37a7
1 changed files with 1 additions and 1 deletions
|
|
@ -287,7 +287,7 @@ def get_format_and_title(self):
|
|||
if child.objectName() == 'format':
|
||||
current_format = str(child.currentText()).strip()
|
||||
elif child.objectName() == 'title':
|
||||
current_title = str(child.text()).strip()
|
||||
current_title = unicode(child.text()).strip()
|
||||
self.parentWidget().blockSignals(False)
|
||||
return current_format, current_title
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue