changeset 810:0b07a0c574bc

svncommands: fix weird missing newline after if statement
author Augie Fackler <durin42@gmail.com>
date Tue, 24 May 2011 16:08:17 -0500
parents ab372e38fb6c
children ccefff0c4f91
files hgsubversion/svncommands.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/svncommands.py
+++ b/hgsubversion/svncommands.py
@@ -238,7 +238,8 @@ def rebuildmeta(ui, repo, args, **opts):
 
                 if parentpath.startswith('tags/') and parentextra.get('close'):
                     continue
-                elif parentpath.startswith('branches/'):                    branch = parentpath[len('branches/'):]
+                elif parentpath.startswith('branches/'):
+                    branch = parentpath[len('branches/'):]
                 elif parentpath == 'trunk':
                     branch = None
                 else: