[Scipy-svn] r3823 - trunk/scipy/misc
scipy-svn@scip...
scipy-svn@scip...
Sat Jan 12 05:17:56 CST 2008
Author: wnbell
Date: 2008-01-12 05:17:53 -0600 (Sat, 12 Jan 2008)
New Revision: 3823
Modified:
trunk/scipy/misc/ppimport.py
Log:
fixed syntax error
Modified: trunk/scipy/misc/ppimport.py
===================================================================
--- trunk/scipy/misc/ppimport.py 2008-01-12 10:06:39 UTC (rev 3822)
+++ trunk/scipy/misc/ppimport.py 2008-01-12 11:17:53 UTC (rev 3823)
@@ -284,7 +284,7 @@
# XXX: Should we check the existence of module.test? Warn?
from scipy.testing.pkgtester import Tester
- test = Tester(os.path.dirname(module).test
+ test = Tester(os.path.dirname(module).test)
return module
def __setattr__(self, name, value):
More information about the Scipy-svn
mailing list