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