diff -r ec2e1df8bb10 -r 9480f2b15129 VirtualMailManager/Config.py --- 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: