diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-10-11 21:17:00 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-10-11 21:17:00 +0000 |
commit | 35352e2511faca52bf140faa8ae037cae1636b21 (patch) | |
tree | 6bcddc4067e6875d079451a010448556ecc28f15 | |
parent | 7358a4809c3853e203c3c4aa89650942c12b234e (diff) | |
download | portage-35352e2511faca52bf140faa8ae037cae1636b21.tar.gz portage-35352e2511faca52bf140faa8ae037cae1636b21.tar.bz2 portage-35352e2511faca52bf140faa8ae037cae1636b21.zip |
Fix python shebangs. s:/usr/bin/env python:/usr/bin/python:
svn path=/main/trunk/; revision=14573
-rwxr-xr-x | bin/check-implicit-pointer-usage.py | 2 | ||||
-rwxr-xr-x | bin/filter-bash-environment.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/check-implicit-pointer-usage.py b/bin/check-implicit-pointer-usage.py index 65b0d1228..100c4a4b1 100755 --- a/bin/check-implicit-pointer-usage.py +++ b/bin/check-implicit-pointer-usage.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Ripped from HP and updated from Debian # Update by Gentoo to support unicode output diff --git a/bin/filter-bash-environment.py b/bin/filter-bash-environment.py index eedb06097..e919572c9 100755 --- a/bin/filter-bash-environment.py +++ b/bin/filter-bash-environment.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ |