mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
Print helpful command if isort fails
This commit is contained in:
parent
3e1687282b
commit
0f1d9217f0
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user