kete: don't return self from __exit__

This supresses any exceptions we get during the handling. Just continue and
let the stack deal with the exception (if any)
pull/12/merge
Peter Hutterer 2018-01-23 09:03:10 +10:00
parent e974ca17cc
commit fc81356d25
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ class TuhiKeteManager(_DBusObject):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
return self
pass
class Searcher(GObject.Object):