VirtualMailManager/config.py
branchv0.6.x
changeset 322 94bd10e237e5
parent 320 011066435e6f
child 326 8f8d9c4c8332
--- a/VirtualMailManager/config.py	Wed Jul 28 02:52:08 2010 +0000
+++ b/VirtualMailManager/config.py	Wed Jul 28 03:43:59 2010 +0000
@@ -370,7 +370,7 @@
         """
         # TODO: There are only two settings w/o defaults.
         #       So there is no need for cStringIO
-        if not self.__chk_cfg():
+        if not self._chk_cfg():
             errmsg = StringIO()
             errmsg.write(_(u'Missing options, which have no default value.\n'))
             errmsg.write(_(u'Using configuration file: %s\n') %
@@ -392,7 +392,7 @@
         to Unicode."""
         return get_unicode(self.get(section, option))
 
-    def __chk_cfg(self):
+    def _chk_cfg(self):
         """Checks all section's options for settings w/o a default
         value.