Mercurial > hg
changeset 13898:77b09a7fc8fc
relink: correct unusual indentation
author | Martin Geisler <mg@aragost.com> |
---|---|
date | Wed, 06 Apr 2011 15:26:49 +0200 |
parents | 375872fdadba |
children | a7cd0eee396b |
files | hgext/relink.py |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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))