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)
This commit is contained in:
parent
e974ca17cc
commit
fc81356d25
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue