hgext/relink.py
changeset 13898 77b09a7fc8fc
parent 13659 a73f38d8bbdb
child 14235 b9e1b041744f
--- 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))