34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
|
Index: virt-manager-1.0.1/virtManager/config.py
|
||
|
===================================================================
|
||
|
--- virt-manager-1.0.1.orig/virtManager/config.py
|
||
|
+++ virt-manager-1.0.1/virtManager/config.py
|
||
|
@@ -21,8 +21,10 @@ import os
|
||
|
import logging
|
||
|
|
||
|
# pylint: disable=E0611
|
||
|
+import gi
|
||
|
from gi.repository import Gio
|
||
|
from gi.repository import GLib
|
||
|
+gi.require_version('Gtk', '3.0')
|
||
|
from gi.repository import Gtk
|
||
|
# pylint: enable=E0611
|
||
|
|
||
|
Index: virt-manager-1.0.1/virtManager/console.py
|
||
|
===================================================================
|
||
|
--- virt-manager-1.0.1.orig/virtManager/console.py
|
||
|
+++ virt-manager-1.0.1/virtManager/console.py
|
||
|
@@ -21,10 +21,13 @@
|
||
|
#
|
||
|
|
||
|
# pylint: disable=E0611
|
||
|
+import gi
|
||
|
from gi.repository import GObject
|
||
|
from gi.repository import Gtk
|
||
|
from gi.repository import Gdk
|
||
|
+gi.require_version('GtkVnc', '2.0')
|
||
|
from gi.repository import GtkVnc
|
||
|
+gi.require_version('SpiceclientGtk', '3.0')
|
||
|
from gi.repository import SpiceClientGtk
|
||
|
from gi.repository import SpiceClientGLib
|
||
|
# pylint: enable=E0611
|