Skip to content
Snippets Groups Projects
Commit 28622db9 authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

switch from /usr/bin/python to /usr/bin/env python. this doesn't help folks...

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.
parent 22f370c5
No related branches found
No related tags found
No related merge requests found
#! /usr/bin/python
#! /usr/bin/env python
# Copyright 2015 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
......
#! /usr/bin/python
#! /usr/bin/env python
# Copyright 2015 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
......
#! /usr/bin/python
#! /usr/bin/env python
import unittest
......
#! /usr/bin/python
#! /usr/bin/env python
from time import time
from curve25519 import Private
......
#! /usr/bin/python
#! /usr/bin/env python
from subprocess import Popen, PIPE
from distutils.core import setup, Extension
......
#! /usr/bin/python
#! /usr/bin/env python
from ctypes import *
import json
import os
......
#! /usr/bin/python
#! /usr/bin/env python
# Copyright 2015 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
......
#! /usr/bin/python
#! /usr/bin/env python
import sys
import yaml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment