[Cython] Fix Python 3 compatibility issue

This commit is contained in:
Ray Speth 2013-06-05 03:08:59 +00:00
parent 9c0eda6e98
commit 39770d6a48

View file

@ -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)))