summaryrefslogtreecommitdiff
path: root/src/examples/btpyparse.py
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2012-11-23 08:54:10 +0000
committerPaul McGuire <ptmcg@austin.rr.com>2012-11-23 08:54:10 +0000
commit774e46526945ea91265734a2dc82d15eed515577 (patch)
tree734ae210c20a98f01fe029f7e6eeb7a93b4617fb /src/examples/btpyparse.py
parent6b12041d4656f4cda910f24acda8d71013166fbd (diff)
downloadpyparsing-git-774e46526945ea91265734a2dc82d15eed515577.tar.gz
Clean up examples to be Python 3 compatible
Diffstat (limited to 'src/examples/btpyparse.py')
-rw-r--r--src/examples/btpyparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/btpyparse.py b/src/examples/btpyparse.py
index 9700ff2..f3c11ae 100644
--- a/src/examples/btpyparse.py
+++ b/src/examples/btpyparse.py
@@ -125,4 +125,4 @@ Some introductory text
number = {2}
}
"""
- print '\n\n'.join(defn.dump() for defn in parse_str(txt))
+ print('\n\n'.join(defn.dump() for defn in parse_str(txt)))