From bcbb21e62bdf4de160e15a279ace9afff6b87edf Mon Sep 17 00:00:00 2001 From: Jacob Keller Date: Wed, 9 Apr 2014 15:26:07 -0700 Subject: [PATCH] aiaiai-diff-log-helper: explicitely call out python2 Since this script is not a python3 script, (it runs in python2!) then we shouldn't rely on "/usr/bin/env python" to always land us on a python2 installation, as some machines may have installed python3, and configured their default python to be the python3 executable. Signed-off-by: Jacob Keller Signed-off-by: Artem Bityutskiy --- helpers/aiaiai-diff-log-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/aiaiai-diff-log-helper b/helpers/aiaiai-diff-log-helper index 5145a0b..93623e2 100755 --- a/helpers/aiaiai-diff-log-helper +++ b/helpers/aiaiai-diff-log-helper @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # -*- coding: utf-8 -*- """ -- 2.50.1