[Python-checkins] r78842 - in python/trunk/Lib: bsddb/dbshelve.py cgi.py

benjamin.peterson python-checkins at python.org
Thu Mar 11 22:53:25 CET 2010


Author: benjamin.peterson
Date: Thu Mar 11 22:53:25 2010
New Revision: 78842

Log:
use proper shebang lines

Modified:
   python/trunk/Lib/bsddb/dbshelve.py
   python/trunk/Lib/cgi.py

Modified: python/trunk/Lib/bsddb/dbshelve.py
==============================================================================
--- python/trunk/Lib/bsddb/dbshelve.py	(original)
+++ python/trunk/Lib/bsddb/dbshelve.py	Thu Mar 11 22:53:25 2010
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
 #------------------------------------------------------------------------
 #           Copyright (c) 1997-2001 by Total Control Software
 #                         All Rights Reserved

Modified: python/trunk/Lib/cgi.py
==============================================================================
--- python/trunk/Lib/cgi.py	(original)
+++ python/trunk/Lib/cgi.py	Thu Mar 11 22:53:25 2010
@@ -1,4 +1,4 @@
-#! /usr/local/bin/python
+#! /usr/bin/env python
 
 # NOTE: the above "/usr/local/bin/python" is NOT a mistake.  It is
 # intentionally NOT "/usr/bin/env python".  On many systems


More information about the Python-checkins mailing list