Submitter | Siddharth Agarwal |
---|---|
Date | Sept. 24, 2015, 11:29 p.m. |
Message ID | <ec07832637be1ee1e2cf.1443137376@dev6666.prn1.facebook.com> |
Download | mbox | patch |
Permalink | /patch/10621/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/error.py b/mercurial/error.py --- a/mercurial/error.py +++ b/mercurial/error.py @@ -114,6 +114,10 @@ class LockHeld(LockError): class LockUnavailable(LockError): pass +# LockError is for errors while acquiring the lock -- this is unrelated +class LockInheritanceContractViolation(AssertionError): + pass + class ResponseError(Exception): """Raised to print an error with part of output and exit."""