Merge pull request #3085 from jpadilla/import-cleanup

Print helpful command if isort fails
This commit is contained in:
Tom Christie 2015-06-29 09:38:34 +01:00
commit af1a4bd683

View File

@ -34,7 +34,12 @@ def flake8_main(args):
def isort_main(args): def isort_main(args):
print('Running isort code checking') print('Running isort code checking')
ret = subprocess.call(['isort'] + args) 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 return ret