diff --git a/2017/client.py b/2017/client.py index 6d6d81f..12e536d 100644 --- a/2017/client.py +++ b/2017/client.py @@ -327,6 +327,8 @@ def historiques(self, action): @param action: le nom de l'action @type action: string ''' + action=action.lower() + action=action.replace(action[0],action[0].upper(),1) #On change (en majuscule) le premier caractère de la chaine self.__estTop() self.__notEnd() self.__envoyer("HISTO "+action+" "+str(len(self.histoActions[action])))