From 8c05c33abca5021f47418dc7a0e670706c6e395c Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Tue, 23 Nov 2010 20:03:49 -0500 Subject: [PATCH] virt-manager: Small startup error reporting fix Make sure we import gtk into the global namespace --- src/virt-manager.py.in | 1 + 1 file changed, 1 insertion(+) diff --git a/src/virt-manager.py.in b/src/virt-manager.py.in index 9bc67f084..78e08d625 100755 --- a/src/virt-manager.py.in +++ b/src/virt-manager.py.in @@ -294,6 +294,7 @@ def main(): gobject.set_prgname(appname) import gtk + globals()["gtk"] = gtk except Warning, e: # ...the risk is we catch too much though # Damned if we do, damned if we dont :-)(