From c09f7dacd524226f8c41222871faf054c400262e Mon Sep 17 00:00:00 2001 From: Suchang Woo Date: Fri, 19 Aug 2016 15:41:52 +0900 Subject: [PATCH] Fix missing changes in ambctl gobject is replaced with gi.repository module. It should be GObject not gobject. Signed-off-by: Suchang Woo Change-Id: I2b0e059833afe78816dc66cee9ea295d942e77bf --- tools/ambctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ambctl.py b/tools/ambctl.py index cb091a7..8cf0dfe 100644 --- a/tools/ambctl.py +++ b/tools/ambctl.py @@ -210,7 +210,7 @@ def processCommand(command, commandArgs, noMain=True): pass if not noMain == True: try: - main_loop = gobject.MainLoop(None, False) + main_loop = GObject.MainLoop() main_loop.run() except KeyboardInterrupt: return 1 -- 2.7.4