|
From: <and...@us...> - 2010-08-24 11:12:41
|
Revision: 11151
http://plplot.svn.sourceforge.net/plplot/?rev=11151&view=rev
Author: andrewross
Date: 2010-08-24 11:12:35 +0000 (Tue, 24 Aug 2010)
Log Message:
-----------
Fix up python scripts to use #!/usr/bin/env python instead of #!python. Most scripts do the latter already and Debian lintian at least warns about the former.
Modified Paths:
--------------
trunk/examples/python/pytkdemo
trunk/examples/python/xtkpy
Modified: trunk/examples/python/pytkdemo
===================================================================
--- trunk/examples/python/pytkdemo 2010-08-24 11:07:53 UTC (rev 11150)
+++ trunk/examples/python/pytkdemo 2010-08-24 11:12:35 UTC (rev 11151)
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python
# -*-python-*-
# Geoffrey Furnish
#
Modified: trunk/examples/python/xtkpy
===================================================================
--- trunk/examples/python/xtkpy 2010-08-24 11:07:53 UTC (rev 11150)
+++ trunk/examples/python/xtkpy 2010-08-24 11:12:35 UTC (rev 11151)
@@ -1,4 +1,4 @@
-#! python
+#!/usr/bin/env python
# This is a Python/Tk toolbar to run the Python demos. Perhpas
# eventually we will be able to have plframe in a Python/Tk context.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|