openshift/library

make verify fails

bparees opened this issue · 2 comments

$ make verify
hack/verify-python.sh
Checking for Python errors using pylint
No config file found, using default configuration
************* Module import_content
E:162,18: Undefined variable 'file' (undefined-variable)
FAILURE: Python errors detected!
make: *** [Makefile:4: verify] Error 1

@bparees looks like you are using python 3 which does not work with "file".

I can update the make verify script to use python2 -m pylint which would fix that.

I can update the make verify script to use python2 -m pylint which would fix that.

ok w/ me.