diff options
author | Matthew Hodgson <matthew@matrix.org> | 2015-11-01 13:05:51 +0000 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2015-11-01 13:05:51 +0000 |
commit | 28622db92f006b27b25dcaf6d06eb7b0e69c8687 (patch) | |
tree | 71f3fe79282e664dd84cbd308cdd3b4c17351d9d /lib/curve25519-donna/python-src/curve25519 | |
parent | 22f370c5cdb9ba0b2c6be85948e31d0daf8122d5 (diff) |
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.
Diffstat (limited to 'lib/curve25519-donna/python-src/curve25519')
-rwxr-xr-x | lib/curve25519-donna/python-src/curve25519/test/test_curve25519.py | 2 | ||||
-rwxr-xr-x | lib/curve25519-donna/python-src/curve25519/test/test_speed.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/curve25519-donna/python-src/curve25519/test/test_curve25519.py b/lib/curve25519-donna/python-src/curve25519/test/test_curve25519.py index 2ecbd47..b3a5447 100755 --- a/lib/curve25519-donna/python-src/curve25519/test/test_curve25519.py +++ b/lib/curve25519-donna/python-src/curve25519/test/test_curve25519.py @@ -1,4 +1,4 @@ -#! /usr/bin/python +#! /usr/bin/env python import unittest diff --git a/lib/curve25519-donna/python-src/curve25519/test/test_speed.py b/lib/curve25519-donna/python-src/curve25519/test/test_speed.py index 87952fa..4d7e0c8 100755 --- a/lib/curve25519-donna/python-src/curve25519/test/test_speed.py +++ b/lib/curve25519-donna/python-src/curve25519/test/test_speed.py @@ -1,4 +1,4 @@ -#! /usr/bin/python +#! /usr/bin/env python from time import time from curve25519 import Private |