Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
None
-
None
-
None
Description
There still exists, throughout the project, the use of print statements instead of print functions which make using python3 impossible, since that is considered a syntax error.
Adding the import
from __future__ import print_statement
at the top of the file, and switching statements to functions, will allow the use of python 2 and 3.