summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2012-11-27 11:19:08 -0500
committerCole Robinson <crobinso@redhat.com>2012-11-27 11:19:08 -0500
commitf84f9b2355fb8adbbc2e5bf2fbba79afe4a2e90b (patch)
tree5646f28fdff4aeca521d25d43bd016e8c387f496
parent43b213bf19d45e982e1161dba9cabd0e350e00dd (diff)
downloadvirt-manager-f84f9b2355fb8adbbc2e5bf2fbba79afe4a2e90b.tar.gz
Bump gtkbuilder sanitization to fix things on gtk 2.20
-rw-r--r--src/virtManager/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/virtManager/util.py b/src/virtManager/util.py
index b75541c8..d748fa1a 100644
--- a/src/virtManager/util.py
+++ b/src/virtManager/util.py
@@ -426,7 +426,7 @@ def sanitize_gtkbuilder(filename):
xml = file(filename).read()
if (ver[0] > 2 or
- (ver[0] == 2 and ver[1] > 18)):
+ (ver[0] == 2 and ver[1] > 20)):
# Skip altering for gtk > 2.18
return xml