2016-06-22 00:34:03 +02:00
|
|
|
Creates a problem for gobject-introspection identifying what
|
|
|
|
version of vte is really allowed. Vte 2.91 is installed on the
|
|
|
|
host but the RPM is built requiring 2.90.
|
|
|
|
|
2018-10-30 23:00:52 +01:00
|
|
|
Index: virt-manager-2.0.0/virtManager/serialcon.py
|
|
|
|
===================================================================
|
|
|
|
--- virt-manager-2.0.0.orig/virtManager/serialcon.py
|
|
|
|
+++ virt-manager-2.0.0/virtManager/serialcon.py
|
|
|
|
@@ -12,12 +12,12 @@ from gi.repository import Gtk
|
2016-06-22 00:34:03 +02:00
|
|
|
|
|
|
|
# We can use either 2.91 or 2.90. This is just to silence runtime warnings
|
|
|
|
# pylint: disable=wrong-import-position
|
|
|
|
-try:
|
|
|
|
- gi.require_version("Vte", "2.91")
|
|
|
|
- logging.debug("Using VTE API 2.91")
|
|
|
|
-except ValueError:
|
|
|
|
- gi.require_version("Vte", "2.90")
|
|
|
|
- logging.debug("Using VTE API 2.90")
|
|
|
|
+#try:
|
|
|
|
+# gi.require_version("Vte", "2.91")
|
|
|
|
+# logging.debug("Using VTE API 2.91")
|
|
|
|
+#except ValueError:
|
|
|
|
+# gi.require_version("Vte", "2.90")
|
|
|
|
+# logging.debug("Using VTE API 2.90")
|
|
|
|
from gi.repository import Vte
|
|
|
|
|
|
|
|
import libvirt
|