From 28622db92f006b27b25dcaf6d06eb7b0e69c8687 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Sun, 1 Nov 2015 13:05:51 +0000 Subject: switch from /usr/bin/python to /usr/bin/env python. this doesn't help folks whose python path points at python3 (e.g. Arch linux) though, but I see no choice than they have to change the shebangs, as we do on Synapse. For instance, OSX doesn't have a python2 symlink, otherwise we'd use /usr/bin/env python2 shebang. --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test.py') diff --git a/test.py b/test.py index e1ef5c9..ef9f942 100755 --- a/test.py +++ b/test.py @@ -1,4 +1,4 @@ -#! /usr/bin/python +#! /usr/bin/env python # Copyright 2015 OpenMarket Ltd # # Licensed under the Apache License, Version 2.0 (the "License"); -- cgit v1.2.3