This commit is contained in:
sidya82
2015-01-12 16:36:26 +01:00
parent 1b34dd5c6a
commit 140b1bfe01
13 changed files with 50 additions and 116 deletions

View File

@ -50,7 +50,7 @@ class Parking:
"""
place = None
for p in self.__Places:
if p.estLibre and p.dimValide(voiture.hauteur, voiture.longueur) :
if p.estLibre and p.dimValide(voiture.getHauteur, voiture.getLongueur) :
pass
place = p
break