modifié: m/loadConf.py

This commit is contained in:
sidya82 2014-03-03 00:54:41 +01:00
parent 76ef0554a9
commit fa29e8ce05
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ class LoadConf(object):
for ligne in source:
data = ligne.rstrip('\n\r').split('=')
try :
if data[0] in key :
if data[0] == key :
source.close()
return data[1]
except Exception, e :