From 0e9a9b9f6ef531ff28e65673ec5f84b528edbe2a Mon Sep 17 00:00:00 2001 From: Mikhail S Medvedev Date: Thu, 21 Jul 2016 11:52:38 -0500 Subject: [PATCH] Fix shebang for modules.env sort check script It is obviously missing "python" which makes it not possible to run on its own. It works with tox because tox.ini explicitly invokes it with "python {toxinidir}/tools/sorted_modules_env.py". Change-Id: I6eab942660d69eacda95572c7d2077687087b7c7 --- tools/sorted_modules_env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sorted_modules_env.py b/tools/sorted_modules_env.py index a5a4a70f98..f3b9f583ad 100644 --- a/tools/sorted_modules_env.py +++ b/tools/sorted_modules_env.py @@ -1,4 +1,4 @@ -#!/usr/bin/env +#!/usr/bin/env python import sys import difflib