diff hgext/convert/subversion.py @ 11167:b5ef95b5ae14

convert/svn: fix long line
author Matt Mackall <mpm@selenic.com>
date Wed, 12 May 2010 14:49:46 -0500
parents 94afe7bc87a9
children 573bef78763f
line wrap: on
line diff
--- 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)