Komodo keep giving 'Syntax eror' for every 'print' statement

Using Komodo Edit- 9 on Fedora 20
Using the python3 interperters.
Komodo gives syntax error for any print statements.

Print statements work in other IDE’s but Komodo gives syntax error’s
Using ‘%(python3) -u %F’ for Run command.

How do your print statements looks? print "hello" is actually a syntax error since Python 3, you have to use print as function, e.g. print("Hello world")

AH HA! that might be the problem, thanks.