relink: correct unusual indentation
authorMartin Geisler <mg@aragost.com>
Wed, 06 Apr 2011 15:26:49 +0200
changeset 13898 77b09a7fc8fc
parent 13897 375872fdadba
child 13899 a7cd0eee396b
relink: correct unusual indentation
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))