modifié: m/loadConf.py

This commit is contained in:
sidya82 2014-03-02 23:12:11 +01:00
parent c450b37f4d
commit b23de92f6c
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 data[1]
return str(data[1])
source.close()
return "error"
@ -19,7 +19,7 @@ class LoadConf(object):
return rep
def ipCamera(self) :
return self.loadValue("camera")
return str(self.loadValue("camera"))
def portServ(self) :
return self.loadValue("port")
return str(self.loadValue("port"))