From fe49da8100e129a20670b40a843d043b5344a7e0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 18 Oct 2015 08:30:25 +0530 Subject: [PATCH] ... --- src/calibre/gui2/add.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/add.py b/src/calibre/gui2/add.py index aef73f8d72..7399007914 100644 --- a/src/calibre/gui2/add.py +++ b/src/calibre/gui2/add.py @@ -221,7 +221,7 @@ class Adder(QObject): except Failure as err: error_dialog(self.pd, _('Cannot add books'), _( 'Failed to add any books, click "Show details" for more information.'), - det_msg=unicode(err.failure_message) + '\n' + unicode(err.details), show=True) + det_msg=as_unicode(err.failure_message) + '\n' + as_unicode(err.details), show=True) self.pd.canceled = True self.do_one_signal.emit()