From b870a29f46b6c3a2288d9f006f412406e5d9738b Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 6 Jan 2005 12:45:57 +0000 Subject: [PATCH] do not consider passwords as integer --- common/optparser.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/common/optparser.py b/common/optparser.py index 6940643b3..c5b06e684 100644 --- a/common/optparser.py +++ b/common/optparser.py @@ -42,12 +42,15 @@ class OptionsParser(ConfigParser.ConfigParser): for option in self.options(section): value = self.get(section, option, 1) #convert to int options than can be - try: - i = string.atoi(value) - except ValueError: - self.tab[section][option] = value + if string.find(option, 'password') == -1: + try: + i = string.atoi(value) + except ValueError: + self.tab[section][option] = value + else: + self.tab[section][option] = i else: - self.tab[section][option] = i + self.tab[section][option] = value # setattr(self, str(section) + '_' + \ # str(option), value)