VirtualMailManager/Config.py
branchv0.6.x
changeset 178 9480f2b15129
parent 175 b241272eb1bd
child 180 f8279c90e99c
--- a/VirtualMailManager/Config.py	Tue Jan 26 19:39:51 2010 +0000
+++ b/VirtualMailManager/Config.py	Fri Jan 29 23:56:45 2010 +0000
@@ -140,8 +140,8 @@
         return sect_opt
 
     def items(self, section):
-        """returns a ``list`` with key, value ``tuples`` from the given
-        ``section``: ``[(key, value), …]``"""
+        """returns an iterable that returns key, value ``tuples`` from the
+        given ``section``."""
         if section in self._sections:# check if the section was parsed
             d2 = self._sections[section]
         elif not section in self._cfg:
@@ -415,7 +415,7 @@
             self._modified = True
         w_std(_(u'Using configuration file: %s\n') % self.__cfgFileName)
         for s in sections:
-            w_std(_(u'* Config section: “%s”') % s )
+            w_std(_(u'* Configuration section: “%s”') % s )
             for opt, val in self.items(s):
                 failures = 0
                 while True: