[Scipy-svn] r3003 - trunk/Lib/sandbox

scipy-svn@scip... scipy-svn@scip...
Tue May 15 05:35:24 CDT 2007


Author: jarrod.millman
Date: 2007-05-15 05:35:21 -0500 (Tue, 15 May 2007)
New Revision: 3003

Modified:
   trunk/Lib/sandbox/setup.py
Log:
cosmetic fix for sandbox/setup.py


Modified: trunk/Lib/sandbox/setup.py
===================================================================
--- trunk/Lib/sandbox/setup.py	2007-05-15 09:41:19 UTC (rev 3002)
+++ trunk/Lib/sandbox/setup.py	2007-05-15 10:35:21 UTC (rev 3003)
@@ -1,13 +1,15 @@
-import os
+#!/usr/bin/env python
 
+from os.path import join
+
 def configuration(parent_package='',top_path=None):
     from numpy.distutils.misc_util import Configuration
     config = Configuration('sandbox',parent_package,top_path)
 
     sandbox_packages = []
     try:
-        sandbox_file = open(os.path.join(config.package_path,
-                                         'enabled_packages.txt'), 'rU')
+        sandbox_file = open(join(config.package_path,
+                                 'enabled_packages.txt'), 'rU')
     except IOError:
         pass
     else:



More information about the Scipy-svn mailing list