summaryrefslogtreecommitdiff
path: root/examples/statemachine/documentSignoffDemo.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/statemachine/documentSignoffDemo.py')
-rw-r--r--examples/statemachine/documentSignoffDemo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/statemachine/documentSignoffDemo.py b/examples/statemachine/documentSignoffDemo.py
index 89c6440..58aa208 100644
--- a/examples/statemachine/documentSignoffDemo.py
+++ b/examples/statemachine/documentSignoffDemo.py
@@ -26,7 +26,7 @@ class Document:
return attr
def __str__(self):
- return "{}: {}".format(self.__class__.__name__, self._state)
+ return "{0}: {1}".format(self.__class__.__name__, self._state)
def run_demo():