project8 / Pypeline

A python interface for the dripline slow control system.
Other
2 stars 0 forks source link

Avoid use of print keyword (use print function instead) #16

Closed laroque closed 12 years ago

laroque commented 12 years ago

The python 2 keyword `print' was removed in python 3. The latter has only the print() function with the following relationship:

print -> print()

The later should be used exclusively in order to maintain python 3 compatibility of the code.

laroque commented 12 years ago

Hey Micah, I've actually fixed this in my last push to develop. You were assigned just to ensure that you see this and keep it in mind for the future.