summaryrefslogtreecommitdiff
path: root/examples/adventureEngine.py
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2019-01-09 17:18:22 -0600
committerptmcg <ptmcg@austin.rr.com>2019-01-09 17:18:22 -0600
commitd626c99b6288afc4708d72f668b45a29d3263d22 (patch)
tree4cbeca134437387022e59b71631246e178393aca /examples/adventureEngine.py
parente9ef507bf1fd41d4bd3ffb0c193e5889254ba340 (diff)
downloadpyparsing-git-d626c99b6288afc4708d72f668b45a29d3263d22.tar.gz
Add enumerated place holders for strings that invoke str.format(), for Py2 compatibility
Diffstat (limited to 'examples/adventureEngine.py')
-rw-r--r--examples/adventureEngine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/adventureEngine.py b/examples/adventureEngine.py
index 259c03e..8dee391 100644
--- a/examples/adventureEngine.py
+++ b/examples/adventureEngine.py
@@ -66,7 +66,7 @@ class Room(object):
is_form = "are"
else:
is_form = "is"
- print("There {} {} here.".format(is_form, enumerateItems(visibleItems)))
+ print("There {0} {1} here.".format(is_form, enumerateItems(visibleItems)))
else:
print("You see %s." % (enumerateItems(visibleItems)))