psss / python-nitrate

Python API for the Nitrate test case management system
GNU Lesser General Public License v2.1
9 stars 24 forks source link

Make examples usable with Python 3 #27

Closed stepnem closed 3 years ago

stepnem commented 3 years ago

That seems to have been the intention, as the shebang already assumes python3.

I haven't tried actually running create.py (it looks more like just a collection of examples), but matrix.py now does work as a python3 script.

Fixes: 90b1d68227df ("Migrate the code to Python 3")

stepnem commented 3 years ago

Trailing comma of python2's print command should be converted to end=' ' parameter of python3's print() function.

Fixed, sorry for the oversight.