Drop error message if no error handler is specified by plugin.

Fri, 13 Oct 2017 22:42:35 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Fri, 13 Oct 2017 22:42:35 +0200
changeset 5901
96bb9e46ec89
parent 5899
0516f6548ca6
child 5902
fb4b68592b7c

Drop error message if no error handler is specified by plugin.

Utilities/BackgroundService.py file | annotate | diff | comparison | revisions
--- a/Utilities/BackgroundService.py	Tue Oct 10 19:05:00 2017 +0200
+++ b/Utilities/BackgroundService.py	Fri Oct 13 22:42:35 2017 +0200
@@ -211,7 +211,7 @@
                             'An error in Erics background client stopped the'
                             ' service.')
                         )
-                    except KeyError:
+                    except (KeyError, TypeError):
                         # ignore silently
                         pass
                 if res != E5MessageBox.No:

eric ide

mercurial