This commit is contained in:
Kovid Goyal 2013-11-05 21:04:44 +05:30
parent a05b241b30
commit 1f8d7c69be
2 changed files with 4 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class Boss(QObject):
if not dirtied:
return True
return question_dialog(self.gui, _('Unsaved changes'), _(
'You have unsaved changes in the files %s. If you proceeed,'
'You have unsaved changes in the files %s. If you proceed,'
' you will lose them. Proceed anyway?') % ', '.join(dirtied))
def open_book(self, path=None):

View File

@ -263,6 +263,9 @@ def offload():
res = {'result':None, 'tb':None}
try:
mod, func, args, kwargs = args
if mod is None:
eintr_retry_call(conn.send, res)
continue
f = func_cache.get((mod, func), None)
if f is None:
try: