[Python-checkins] distutils2 (python3): Fix shebangs
eric.araujo
python-checkins at python.org
Mon Nov 21 14:21:37 CET 2011
http://hg.python.org/distutils2/rev/bf1b6478e134
changeset: 1261:bf1b6478e134
branch: python3
user: Éric Araujo <merwok at netwok.org>
date: Sun Nov 20 19:46:13 2011 +0100
summary:
Fix shebangs
files:
pysetup | 2 +-
runtests.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pysetup b/pysetup
--- a/pysetup
+++ b/pysetup
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
from distutils2.run import main
if __name__ == "__main__":
diff --git a/runtests.py b/runtests.py
--- a/runtests.py
+++ b/runtests.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""Test runner for distutils2.
The tests for distutils2 are defined in the distutils2.tests package.
--
Repository URL: http://hg.python.org/distutils2
More information about the Python-checkins
mailing list