[py-svn] r23355 - py/dist/py/misc

hpk at codespeak.net hpk at codespeak.net
Wed Feb 15 10:35:32 CET 2006


Author: hpk
Date: Wed Feb 15 10:35:31 2006
New Revision: 23355

Modified:
   py/dist/py/misc/svnlook.py
Log:
make the repo attribute a path object


Modified: py/dist/py/misc/svnlook.py
==============================================================================
--- py/dist/py/misc/svnlook.py	(original)
+++ py/dist/py/misc/svnlook.py	Wed Feb 15 10:35:31 2006
@@ -3,7 +3,7 @@
 
 class ChangeItem:
     def __init__(self, repo, revision, line):
-        self.repo = repo 
+        self.repo = py.path.local(repo)
         self.revision = int(revision)
         self.action = action = line[:4]
         self.path = line[4:].strip()



More information about the pytest-commit mailing list