modifié: m/loadConf.py

This commit is contained in:
sidya82 2014-03-02 23:13:48 +01:00
parent b23de92f6c
commit 6f5bc4cdad
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ class LoadConf(object):
data = ligne.rstrip('\n\r').split('=')
if data[0] in key :
source.close()
return str(data[1])
return data[1]
source.close()
return "error"
@ -19,7 +19,7 @@ class LoadConf(object):
return rep
def ipCamera(self) :
return str(self.loadValue("camera"))
return loadValue("camera")
def portServ(self) :
return str(self.loadValue("port"))
return loadValue("port")