mercurial/mdiff.py
changeset 45942 89a2afe31e82
parent 45873 c8860a212770
child 46819 d4ba4d51f85f
--- a/mercurial/mdiff.py	Fri Nov 27 17:00:00 2020 -0500
+++ b/mercurial/mdiff.py	Fri Nov 27 17:03:29 2020 -0500
@@ -39,7 +39,7 @@
 
 # TODO: this looks like it could be an attrs, which might help pytype
 class diffopts(object):
-    '''context is the number of context lines
+    """context is the number of context lines
     text treats all files as text
     showfunc enables diff -p output
     git enables the git extended patch format
@@ -50,7 +50,7 @@
     ignorewsamount ignores changes in the amount of whitespace
     ignoreblanklines ignores changes whose lines are all blank
     upgrade generates git diffs to avoid data loss
-    '''
+    """
 
     _HAS_DYNAMIC_ATTRIBUTES = True