diff --git a/m/loadConf.py b/m/loadConf.py index effa2e5..f666e77 100644 --- a/m/loadConf.py +++ b/m/loadConf.py @@ -3,9 +3,9 @@ class LoadConf(object): with open("m/fichier/conf", "r") as source : for ligne in source: data = ligne.rstrip('\n\r').split('=') - if data[0] == key : - source.close() - return data[1] + if data[0] == key : + source.close() + return data[1] source.close() return "error"