config: s/running_config/RUNNING_CONFIG/g

This commit is contained in:
Cole Robinson 2015-11-02 16:09:47 -05:00
parent 50b1b18ec4
commit c6da8fedb8
2 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ class vmmGObject(GObject.GObject):
def __init__(self):
GObject.GObject.__init__(self)
self.config = config.running_config
self.config = config.RUNNING_CONFIG
self._gobject_handles = []
self._gobject_timeouts = []

View File

@ -27,7 +27,7 @@ from gi.repository import Gtk
from virtinst import CPU
from .keyring import vmmKeyring, vmmSecret
running_config = None
RUNNING_CONFIG = None
class SettingsWrapper(object):
@ -182,8 +182,8 @@ class vmmConfig(object):
self._spice_error = None
global running_config
running_config = self
global RUNNING_CONFIG
RUNNING_CONFIG = self
def check_inspection(self):