hgext/relink.py
changeset 38442 36edfbac7281
parent 38404 398716063c2d
child 40293 c303d65d2e34
--- a/hgext/relink.py	Fri Mar 24 00:32:31 2017 -0400
+++ b/hgext/relink.py	Fri Mar 24 00:33:35 2017 -0400
@@ -70,17 +70,10 @@
         # No point in continuing
         raise error.Abort(_('source and destination are on different devices'))
 
-    locallock = repo.lock()
-    try:
-        remotelock = src.lock()
-        try:
-            candidates = sorted(collect(src, ui))
-            targets = prune(candidates, src.store.path, repo.store.path, ui)
-            do_relink(src.store.path, repo.store.path, targets, ui)
-        finally:
-            remotelock.release()
-    finally:
-        locallock.release()
+    with repo.lock(), src.lock():
+        candidates = sorted(collect(src, ui))
+        targets = prune(candidates, src.store.path, repo.store.path, ui)
+        do_relink(src.store.path, repo.store.path, targets, ui)
 
 def collect(src, ui):
     seplen = len(os.path.sep)