From 6091f9d1a39bce1b9ba32ea1b6b52389f43400ca Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 5 Oct 2009 18:22:50 -0400 Subject: [PATCH] create: Fix removing of host storage poll timer --- src/virtManager/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virtManager/create.py b/src/virtManager/create.py index 6470298bb..0097109e1 100644 --- a/src/virtManager/create.py +++ b/src/virtManager/create.py @@ -147,7 +147,7 @@ class vmmCreate(gobject.GObject): def remove_timers(self): try: if self.host_storage_timer: - gobject.source_remote(self.host_storage_timer) + gobject.source_remove(self.host_storage_timer) self.host_storage_timer = None except: pass