config: s/running_config/RUNNING_CONFIG/g
This commit is contained in:
parent
50b1b18ec4
commit
c6da8fedb8
|
@ -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 = []
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue