mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
Stop assuming that /usr/bin/python3 exists
For scripts that work with python2, use /usr/bin/python. Otherwise, use /usr/bin/env python3. Fixes bug 29913; bugfix on 0.2.5.3-alpha.
This commit is contained in:
parent
57999e330b
commit
a10d4adc25
6 changed files with 9 additions and 5 deletions
4
changes/ticket29913
Normal file
4
changes/ticket29913
Normal file
|
@ -0,0 +1,4 @@
|
|||
o Minor bugfixes (python):
|
||||
- Stop assuming that /usr/bin/python3 exists. For scripts that work with
|
||||
python2, use /usr/bin/python. Otherwise, use /usr/bin/env python3.
|
||||
Fixes bug 29913; bugfix on 0.2.5.3-alpha.
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/python
|
||||
# Copyright 2018 The Tor Project, Inc. See LICENSE file for licensing info.
|
||||
|
||||
"""This script looks through all the directories for files matching *.c or
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/python
|
||||
|
||||
"""
|
||||
Best-practices tracker for Tor source code.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
import os.path
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/python
|
||||
|
||||
# This software has been dedicated to the public domain under the CC0
|
||||
# public domain dedication.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
# Copyright 2018-2019, The Tor Project, Inc. See LICENSE for licensing info.
|
||||
|
||||
# Reference implementation for our rudimentary OPE code, used to
|
||||
|
|
Loading…
Add table
Reference in a new issue