From 978f85c05681322a5687e044ce477c7af325e2bc Mon Sep 17 00:00:00 2001 From: Tomas Vondra Date: Thu, 13 Oct 2016 14:27:25 +0200 Subject: [PATCH] add shebang explicitly invoking Python 2.7 The code is not fully compatible with Python 3.x (although it should not be a big deal to make that happen). --- client/perffarm-client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/perffarm-client.py b/client/perffarm-client.py index 5826d33..709ac5a 100755 --- a/client/perffarm-client.py +++ b/client/perffarm-client.py @@ -1,3 +1,5 @@ +#!/usr/bin/python2.7 + import argparse import json import os -- 2.39.5