From 157c5a1cb7166c85d394b385ecff2cf1fcc17546 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 25 Jul 2019 09:08:56 +0530 Subject: [PATCH] py3 porting --- src/calibre/gui2/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/ui.py b/src/calibre/gui2/ui.py index 0fa0d73219..c685edd63c 100644 --- a/src/calibre/gui2/ui.py +++ b/src/calibre/gui2/ui.py @@ -684,7 +684,7 @@ class Main(MainWindow, MainWindowMixin, DeviceMixin, EmailMixin, # {{{ tags += list(data['tags']) self.current_db.new_api.set_field('tags', {book_id: tags}) else: - prints(u'Ignoring unknown message from other instance: %r' % msg[:20]) + prints('Ignoring unknown message from other instance: %r' % msg[:20]) def current_view(self): '''Convenience method that returns the currently visible view '''