From 9bf29dfdaac0bc07c59de0682e78da14de4b59e4 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Wed, 17 Nov 2010 11:28:43 -0500 Subject: [PATCH] Fix warning reporting to not crash with F14 pygtk --- src/virt-manager.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virt-manager.py.in b/src/virt-manager.py.in index 4373f5144..6ce339774 100755 --- a/src/virt-manager.py.in +++ b/src/virt-manager.py.in @@ -284,7 +284,7 @@ def main(): # on as if all were fine. Ultimately bad stuff happens, # so lets catch it here & get the hell out... import warnings - warnings.filterwarnings('error', module='gtk') + warnings.filterwarnings('error', module='gtk', append=True) try: import gobject