diff options
author | Matthew King <chohag@jtan.com> | 2016-06-28 12:54:30 +0300 |
---|---|---|
committer | Matthew King <chohag@jtan.com> | 2016-06-28 12:59:34 +0300 |
commit | 7b01ce254cfa0e8ae7e57a72c57e8ae89f3c1829 (patch) | |
tree | dd2dc1fb3f01bfa5e841f20fc550d3814b3e1f07 /contrib/devtools | |
parent | 873e81f89b3197580aca3dd4a591d00e41696a89 (diff) |
Favour python over python2 as per PR #7723
Diffstat (limited to 'contrib/devtools')
-rwxr-xr-x | contrib/devtools/security-check.py | 2 | ||||
-rwxr-xr-x | contrib/devtools/symbol-check.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/devtools/security-check.py b/contrib/devtools/security-check.py index 24e44cf5d8..c61d652641 100755 --- a/contrib/devtools/security-check.py +++ b/contrib/devtools/security-check.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python ''' Perform basic ELF security checks on a series of executables. Exit status will be 0 if successful, and the program will be silent. diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py index 8c064a1822..8f8685006e 100755 --- a/contrib/devtools/symbol-check.py +++ b/contrib/devtools/symbol-check.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python # Copyright (c) 2014 Wladimir J. van der Laan # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. |