changeset 6019:6f6b6218b6fe

evolve: update docstring of MultipleSuccessorsError
author Sushil khanchi <sushilkhanchi97@gmail.com>
date Tue, 27 Jul 2021 14:02:08 +0530
parents 01154958e0cf
children 18aa756353a7
files hgext3rd/evolve/utility.py
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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):