[Python-checkins] r61742 - sandbox/trunk/2to3/2to3

martin.v.loewis python-checkins at python.org
Sat Mar 22 13:48:27 CET 2008


Author: martin.v.loewis
Date: Sat Mar 22 13:48:27 2008
New Revision: 61742

Modified:
   sandbox/trunk/2to3/2to3   (contents, props changed)
Log:
Make script executable.


Modified: sandbox/trunk/2to3/2to3
==============================================================================
--- sandbox/trunk/2to3/2to3	(original)
+++ sandbox/trunk/2to3/2to3	Sat Mar 22 13:48:27 2008
@@ -1,5 +1,5 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 from lib2to3 import refactor
 import sys
 
-sys.exit(refactor.main())
\ No newline at end of file
+sys.exit(refactor.main())


More information about the Python-checkins mailing list