Print helpful command if isort fails

This commit is contained in:
José Padilla 2015-06-27 16:06:53 -04:00
parent 3e1687282b
commit 0f1d9217f0

View File

@ -34,7 +34,12 @@ def flake8_main(args):
def isort_main(args):
print('Running isort code checking')
ret = subprocess.call(['isort'] + args)
print('isort failed' if ret else 'isort passed')
if ret:
print('isort failed: Fix by running `isort --recursive .`')
else:
print('isort passed')
return ret