Catch all exceptions while saving #224

This commit is contained in:
Tomeu Vizoso 2009-03-03 15:22:54 +01:00
parent eaf7afcd91
commit af4faead14

View File

@ -945,7 +945,7 @@ class Activity(Window, gtk.Container):
if not skip_save: if not skip_save:
try: try:
self.save() self.save()
except Exception: except:
logging.info(traceback.format_exc()) logging.info(traceback.format_exc())
self._show_keep_failed_dialog() self._show_keep_failed_dialog()
return False return False