From 19879625c63ac22c1602eadda1c631666f81229a Mon Sep 17 00:00:00 2001 From: Bart Vanherck Date: Thu, 19 Nov 2015 19:03:47 +0100 Subject: [PATCH] Ensure the python of the PATH is used If you have several versions of python installed, /usr/bin/env will ensure the interpreter is used on your environments $PATH. --- bin/graphwalker | 2 +- graphwalker/cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/graphwalker b/bin/graphwalker index 81bc207..b0da1ec 100755 --- a/bin/graphwalker +++ b/bin/graphwalker @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2013 Spotify AB from graphwalker import cli diff --git a/graphwalker/cli.py b/graphwalker/cli.py index 64ac281..81cac29 100755 --- a/graphwalker/cli.py +++ b/graphwalker/cli.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2013 Spotify AB import time