From a3af5d8c6a6adbd99c5ed9aaddd641f24e16faa0 Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Thu, 23 Aug 2001 22:54:08 +0000 Subject: [PATCH] formatting --- direct/src/fsm/FSM.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/direct/src/fsm/FSM.py b/direct/src/fsm/FSM.py index 9ce8655405..4747891d0c 100644 --- a/direct/src/fsm/FSM.py +++ b/direct/src/fsm/FSM.py @@ -64,7 +64,9 @@ class FSM(DirectObject): # Jesse decided that simpler was better with the __str__ function def __str_not__(self): """__str__(self)""" - return "FSM: name = %s \n states = %s \n initial = %s \n final = %s \n current = %s" % (self.__name, self.__states, self.__initialState, self.__finalState, self.__currentState) + return "FSM: name = %s \n states = %s \n initial = %s \n final = %s \n current = %s" \ + % (self.__name, self.__states, self.__initialState, + self.__finalState, self.__currentState) # setters and getters