Skip to content

Fix: Compatibility with python3

Latest
Compare
Choose a tag to compare
@karelyatin karelyatin released this 12 May 10:15
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")