Mercurial > hgsubversion
comparison svnwrap/svn_swig_wrapper.py @ 180:3f1e8a5ec9dd
svn_swig_wrapper: hacky workaround to prevent running out of files in stupid
replay.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 06 Jan 2009 14:54:32 -0600 |
parents | 2412800b1258 |
children | e37f9d3fd5e7 |
comparison
equal
deleted
inserted
replaced
179:a336e3e82648 | 180:3f1e8a5ec9dd |
---|---|
474 | 474 |
475 def list_props(self, path, revision): | 475 def list_props(self, path, revision): |
476 """Return a mapping of property names to values, raise IOError if | 476 """Return a mapping of property names to values, raise IOError if |
477 specified path does not exist. | 477 specified path does not exist. |
478 """ | 478 """ |
479 self.init_ra_and_client() | |
479 rev = optrev(revision) | 480 rev = optrev(revision) |
480 rpath = (self.svn_url + '/' + path.strip('/')).strip('/') | 481 rpath = (self.svn_url + '/' + path.strip('/')).strip('/') |
481 try: | 482 try: |
482 pl = client.proplist2(rpath, rev, rev, False, | 483 pl = client.proplist2(rpath, rev, rev, False, |
483 self.client_context, self.pool) | 484 self.client_context, self.pool) |