From c28bf687400abdcac89636190015e2e094866b6c Mon Sep 17 00:00:00 2001 From: Michael Dance Date: Wed, 13 May 2015 02:36:56 +1200 Subject: [PATCH] Update hashbang to use /usr/bin/env python Please use the /usr/bin/env python hashbang in order to properly detect alternative python installations (like those installed through homebrew on a mac). --- helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloworld.py b/helloworld.py index a0c4376..9f7b6e2 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python from trezorlib.client import TrezorClient from trezorlib.transport_hid import HidTransport