# HG changeset patch # User Sushil khanchi # Date 1627374728 -19800 # Node ID 6f6b6218b6fe2c81d8f6d84a6f6e0b957269bfef # Parent 01154958e0cfa8f4da39a90f26d2d9e555e537f1 evolve: update docstring of MultipleSuccessorsError diff -r 01154958e0cf -r 6f6b6218b6fe hgext3rd/evolve/utility.py --- a/hgext3rd/evolve/utility.py Fri Aug 13 20:25:11 2021 +0200 +++ b/hgext3rd/evolve/utility.py Tue Jul 27 14:02:08 2021 +0530 @@ -67,10 +67,12 @@ return True class MultipleSuccessorsError(RuntimeError): - """Exception raised by _singlesuccessor when multiple successor sets exists + """Exception raised by _singlesuccessor() when multiple successor sets exists - The object contains the list of successorssets in its 'successorssets' - attribute to call to easily recover. + Attributes: + successorssets the list of successorssets to call to easily recover + divergenceflag indicate that changeset has divergent rewriting + splitflag indicate that changeset was split """ def __init__(self, successorssets):