# HG changeset patch # User Augie Fackler # Date 1306271297 18000 # Node ID 0b07a0c574bc71a22a3928c3e718b627ba052034 # Parent ab372e38fb6c743c566a39d22914597cd623e1d9 svncommands: fix weird missing newline after if statement diff --git a/hgsubversion/svncommands.py b/hgsubversion/svncommands.py --- 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: