author | Matt Mackall <mpm@selenic.com> |
Wed, 12 May 2010 14:49:46 -0500 | |
changeset 11167 | b5ef95b5ae14 |
parent 11166 | 7613832a80be |
child 11168 | 6d0d945f9e52 |
--- a/hgext/convert/subversion.py Wed May 12 11:53:09 2010 -0500 +++ b/hgext/convert/subversion.py Wed May 12 14:49:46 2010 -0500 @@ -857,7 +857,7 @@ path = path.strip('/') pool = Pool() rpath = '/'.join([self.baseurl, urllib.quote(path)]).strip('/') - entries = svn.client.ls(rpath, optrev(revnum), True, self.ctx, pool) + entries = svn.client.ls(rpath, optrev(revnum), True, self.ctx, pool) return ((path + '/' + p) for p, e in entries.iteritems() if e.kind == svn.core.svn_node_file)