From 45d958eeff097e1df862cbbbb760bf5831201642 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 22 Oct 2013 19:11:53 +0100 Subject: inspect-cm.py: on errors, exit rather than blocking forever Bug: https://bugs.freedesktop.org/show_bug.cgi?id=71048 Reviewed-by: Guillaume Desmottes --- examples/client/python/inspect-cm.py | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'examples') diff --git a/examples/client/python/inspect-cm.py b/examples/client/python/inspect-cm.py index c653cf716..0564078a9 100644 --- a/examples/client/python/inspect-cm.py +++ b/examples/client/python/inspect-cm.py @@ -28,9 +28,11 @@ def describe(cm): print("\t\tNo default") def manager_prepared_cb(cm, result, loop): - cm.prepare_finish(result) - describe(cm) - loop.quit() + try: + cm.prepare_finish(result) + describe(cm) + finally: + loop.quit() def inspect(name): cm = Tp.ConnectionManager( @@ -41,13 +43,14 @@ def inspect(name): cm.prepare_async(None, cm, loop) def cms_cb(source, result, loop): - cms = Tp.list_connection_managers_finish(result) - - for cm in cms: - describe(cm) - print("") - - loop.quit() + try: + cms = Tp.list_connection_managers_finish(result) + + for cm in cms: + describe(cm) + print("") + finally: + loop.quit() if __name__ == '__main__': loop = GObject.MainLoop() -- cgit v1.2.1