From 36e4f2011195994bd14712c0141a4ef50edea770 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 29 Jun 2015 09:39:27 +0100 Subject: [PATCH] Update runtests.py --- runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index 491d1cc5a..4adb40cc0 100755 --- a/runtests.py +++ b/runtests.py @@ -36,7 +36,7 @@ def isort_main(args): ret = subprocess.call(['isort'] + args) if ret: - print('isort failed: Fix by running `isort --recursive .`') + print('isort failed: Some modules have incorrectly ordered imports. Fix by running `isort --recursive .`') else: print('isort passed')