From 39770d6a48d8e017d4d8fc803544e51d352b9f7d Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 5 Jun 2013 03:08:59 +0000 Subject: [PATCH] [Cython] Fix Python 3 compatibility issue --- interfaces/cython/cantera/examples/reaction_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/cython/cantera/examples/reaction_path.py b/interfaces/cython/cantera/examples/reaction_path.py index 65e55b2ac..75d651646 100644 --- a/interfaces/cython/cantera/examples/reaction_path.py +++ b/interfaces/cython/cantera/examples/reaction_path.py @@ -34,7 +34,7 @@ img_file = 'rxnpath.png' img_path = os.path.join(os.getcwd(), img_file) diagram.write_dot(dot_file) -print diagram.get_data() +print(diagram.get_data()) print("Wrote graphviz input file to '{0}'.".format(os.path.join(os.getcwd(), dot_file)))