flask-security icon indicating copy to clipboard operation
flask-security copied to clipboard

Broken CI for python 3.x

Open miceno opened this issue 7 years ago • 1 comments

I am getting errors on the validation of PR since there is something bad on release.py:

________________________________ pyflakes-check ________________________________
/home/travis/build/mattupstate/flask-security/scripts/release.py:114: InvalidPrintSyntax
use of >> is invalid with print function
/home/travis/build/mattupstate/flask-security/scripts/release.py:119: InvalidPrintSyntax
use of >> is invalid with print function

miceno avatar Mar 24 '19 17:03 miceno

This can be fixed by changing the offending lines in release.py to sys.stderr.write(message % args)

TillerBurr avatar May 11 '19 03:05 TillerBurr