VirtualMailManager/cli/Handler.py
branchv0.6.x
changeset 318 4dc2edf02d11
parent 316 31d8931dc535
child 319 f4956b4ceba1
--- a/VirtualMailManager/cli/Handler.py	Tue Jul 27 14:35:55 2010 +0000
+++ b/VirtualMailManager/cli/Handler.py	Tue Jul 27 19:29:44 2010 +0000
@@ -42,14 +42,14 @@
                                               'v', 'version')
         super(CliHandler, self).__init__(skip_some_checks)
 
-        self._Cfg = Cfg(self._cfgFileName)
-        self._Cfg.load()
+        self._cfg = Cfg(self._cfg_fname)
+        self._cfg.load()
         if not skip_some_checks:
-            self._Cfg.check()
+            self._cfg.check()
             self._chkenv()
 
     def cfgSet(self, option, value):
-        return self._Cfg.set(option, value)
+        return self._cfg.set(option, value)
 
     def configure(self, section=None):
         """Starts the interactive configuration.
@@ -59,9 +59,9 @@
         will be prompted.
         """
         if section is None:
-            self._Cfg.configure(self._Cfg.sections())
-        elif self._Cfg.has_section(section):
-            self._Cfg.configure([section])
+            self._cfg.configure(self._cfg.sections())
+        elif self._cfg.has_section(section):
+            self._cfg.configure([section])
         else:
             raise VMMError(_(u'Invalid section: ā€œ%sā€') % section,
                            INVALID_SECTION)