diff options
author | teor <teor@torproject.org> | 2019-10-25 16:46:54 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-10-25 16:46:54 +1000 |
commit | 00c3fba61c778981903bd9598d2eaa27f51e51a7 (patch) | |
tree | d364fdc0e3f2e735a88833ff2f114acd4b28e25d | |
parent | f40eb2ead6f166f3f478eabe8766856056169a5a (diff) | |
download | tor-00c3fba61c778981903bd9598d2eaa27f51e51a7.tar.gz tor-00c3fba61c778981903bd9598d2eaa27f51e51a7.zip |
scripts/maint: Stop assuming that python3 is in /usr/bin
Obviously correct fix to rename_c_identifier.py.
Bugfix on 32237; not in any released version of tor.
-rwxr-xr-x | scripts/maint/rename_c_identifier.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/maint/rename_c_identifier.py b/scripts/maint/rename_c_identifier.py index 0e56dc48d5..e8cdb895a2 100755 --- a/scripts/maint/rename_c_identifier.py +++ b/scripts/maint/rename_c_identifier.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # # Copyright (c) 2001 Matej Pfajfar. # Copyright (c) 2001-2004, Roger Dingledine. |