[pypy-svn] r53055 - pypy/branch/jit-hotpath/pypy/tool

fijal at codespeak.net fijal at codespeak.net
Fri Mar 28 17:21:08 CET 2008


Author: fijal
Date: Fri Mar 28 17:21:08 2008
New Revision: 53055

Modified:
   pypy/branch/jit-hotpath/pypy/tool/udir.py
Log:
fix bugs :-(


Modified: pypy/branch/jit-hotpath/pypy/tool/udir.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/tool/udir.py	(original)
+++ pypy/branch/jit-hotpath/pypy/tool/udir.py	Fri Mar 28 17:21:08 2008
@@ -6,6 +6,7 @@
 
 import autopath
 import os
+import py
 
 from py.path import local 
 
@@ -17,7 +18,7 @@
         return basename.split('/')[-2]
 
 try:
-    basename = '-' + svn_info(py.path.svnwc.info().url) + '-'
+    basename = '-' + svn_info(py.path.svnwc().info().url) + '-'
 except:
     basename = '-'
 



More information about the Pypy-commit mailing list