diff hgext/convert/subversion.py @ 6553:0bb76d168437

remove trailing spaces
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Wed, 16 Apr 2008 12:09:16 +0200
parents 075b2c9aed37
children f2bd49752f0d 9d6d1fdb7d72
line wrap: on
line diff
--- a/hgext/convert/subversion.py	Wed Apr 16 09:35:43 2008 +0200
+++ b/hgext/convert/subversion.py	Wed Apr 16 12:09:16 2008 +0200
@@ -688,7 +688,7 @@
                 if not copyfrompath:
                     continue
                 copyfrom[path] = ent
-                self.ui.debug("mark %s came from %s:%d\n" 
+                self.ui.debug("mark %s came from %s:%d\n"
                               % (path, copyfrompath, ent.copyfrom_rev))
                 children = self._find_children(ent.copyfrom_path, ent.copyfrom_rev)
                 children.sort()
@@ -738,7 +738,7 @@
             if root_paths:
                 path, ent = root_paths[-1]
                 if ent.copyfrom_path:
-                    # If dir was moved while one of its file was removed 
+                    # If dir was moved while one of its file was removed
                     # the log may look like:
                     # A /dir   (from /dir:x)
                     # A /dir/a (from /dir/a:y)
@@ -746,7 +746,7 @@
                     # ...
                     # for all remaining children.
                     # Let's take the highest child element from rev as source.
-                    copies = [(p,e) for p,e in orig_paths[:-1] 
+                    copies = [(p,e) for p,e in orig_paths[:-1]
                           if isdescendantof(ent.copyfrom_path, e.copyfrom_path)]
                     fromrev = max([e.copyfrom_rev for p,e in copies] + [ent.copyfrom_rev])
                     branched = True