# HG changeset patch # User Pascal Volk # Date 1264134179 0 # Node ID 6526072ec709d5cf4bd4a9fd03d498051d639ed0 # Parent 0ac9ef587769a72f072a76eb772dc39a69da7cb2 VMM/Config: Fixed error handling of missing sections in vmm.cfg. diff -r 0ac9ef587769 -r 6526072ec709 VirtualMailManager/Config.py --- a/VirtualMailManager/Config.py Sat Jan 02 15:45:12 2010 +0000 +++ b/VirtualMailManager/Config.py Fri Jan 22 04:22:59 2010 +0000 @@ -151,6 +151,7 @@ for s in self.__VMMsections: if not self.has_section(s): self.__missing[s] = [True] + errors = True elif not self.__chkOptions(s): errors = True return not errors