mercurial/localrepo.py
changeset 15588 632f4be4d1f3
parent 15587 809d5d30e377
child 15589 cc24e4ed3e0c
--- a/mercurial/localrepo.py	Wed Nov 30 15:36:55 2011 -0600
+++ b/mercurial/localrepo.py	Wed Nov 30 16:20:07 2011 -0600
@@ -917,9 +917,8 @@
 
         The callback will be executed on lock release."""
         l = self._lockref and self._lockref()
-        assert l is not None
-        assert l.held
-        l.postreleasehooks.append(callback)
+        if l:
+            l.postreleasehooks.append(callback)
 
     def lock(self, wait=True):
         '''Lock the repository store (.hg/store) and return a weak reference