mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-04 10:33:31 +02:00
Output failed message in error details
This commit is contained in:
parent
d81a1fdc91
commit
6f39129e5b
1 changed files with 1 additions and 1 deletions
|
|
@ -431,7 +431,7 @@ def send_message(msg):
|
|||
print(err, file=sys.stderr, flush=True)
|
||||
error_dialog(None, _('Contacting calibre failed'), _(
|
||||
'Failed to contact running instance of calibre, try restarting calibre'),
|
||||
det_msg=str(err), show=True)
|
||||
det_msg=str(err) + '\n\n' + repr(msg), show=True)
|
||||
return False
|
||||
return True
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue