summaryrefslogtreecommitdiff
path: root/virt-manager
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-09-28 13:37:16 +0200
committerCole Robinson <crobinso@redhat.com>2014-09-29 08:56:37 -0400
commit1726505fd6a889a9ef3454bd5d8dc80d9fc77004 (patch)
tree1e1023f0082f45fc234cf2fb9615d6e7df0fcaf5 /virt-manager
parenta41e2c6f5a6ddc84c0e94c558085a85808a035a5 (diff)
downloadvirt-manager-1726505fd6a889a9ef3454bd5d8dc80d9fc77004.tar.gz
s/gconf/gsettings/
GConf got replaced by GSettings but some methods kept the old name
Diffstat (limited to 'virt-manager')
-rwxr-xr-xvirt-manager12
1 files changed, 6 insertions, 6 deletions
diff --git a/virt-manager b/virt-manager
index 534c4ab5..65a59832 100755
--- a/virt-manager
+++ b/virt-manager
@@ -168,12 +168,12 @@ def main():
# Ignore SIGHUP, otherwise a serial console closing drops the whole app
signal.signal(signal.SIGHUP, signal.SIG_IGN)
- # The never ending fork+gconf/gsettings problems now require
- # us to import Gtk _after_ the fork. This creates a funny race,
- # since we need to parse the command line arguments to know if
- # we need to fork, but need to import Gtk before cli processing
- # so it can handle --g-fatal-args. We strip out our flags first
- # and pass the left overs to gtk
+ # The never ending fork+gsettings problems now require us to
+ # import Gtk _after_ the fork. This creates a funny race, since we
+ # need to parse the command line arguments to know if we need to
+ # fork, but need to import Gtk before cli processing so it can
+ # handle --g-fatal-args. We strip out our flags first and pass the
+ # left overs to gtk
origargv = sys.argv
try:
sys.argv = origargv[:1] + leftovers[:]