changeset 11167:b5ef95b5ae14

convert/svn: fix long line
author Matt Mackall <mpm@selenic.com>
date Wed, 12 May 2010 14:49:46 -0500
parents 7613832a80be
children 6d0d945f9e52
files hgext/convert/subversion.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)