# HG changeset patch # User Martin Geisler # Date 1302096409 -7200 # Node ID 77b09a7fc8fc7b37cc5432bd3cdf134ffc3ea708 # Parent 375872fdadba7266eced67c85e57ffda26fa7500 relink: correct unusual indentation diff -r 375872fdadba -r 77b09a7fc8fc hgext/relink.py --- a/hgext/relink.py Wed Apr 06 12:48:59 2011 +0200 +++ b/hgext/relink.py Wed Apr 06 15:26:49 2011 +0200 @@ -38,9 +38,9 @@ """ if not hasattr(util, 'samefile') or not hasattr(util, 'samedevice'): raise util.Abort(_('hardlinks are not supported on this system')) - src = hg.repository( - hg.remoteui(repo, opts), - ui.expandpath(origin or 'default-relink', origin or 'default')) + src = hg.repository(hg.remoteui(repo, opts), + ui.expandpath(origin or 'default-relink', + origin or 'default')) if not src.local(): raise util.Abort(_('must specify local origin repository')) ui.status(_('relinking %s to %s\n') % (src.store.path, repo.store.path))