Skip to content

Releases: karelyatin/pydot3

Fix: Compatibility with python3

12 May 10:15
Compare
Choose a tag to compare
Make it Compatible with Python3

Exception, print Syntax is not compatible with python3, this patch
fixes it. Following changes are done:

- except Exception, e  => except Exception as e
- raise Error, "MSG" => raise Error("MSG")
- print "MSG" => print("MSG")