diff --git a/mercurial/interfaces/dirstate.py b/mercurial/interfaces/dirstate.py index f1dffb37f27c21a58dd4e0993e018f2c31d1e96e_bWVyY3VyaWFsL2ludGVyZmFjZXMvZGlyc3RhdGUucHk=..5f8b6617e962f5397016bfb1965007a21994ffc0_bWVyY3VyaWFsL2ludGVyZmFjZXMvZGlyc3RhdGUucHk= 100644 --- a/mercurial/interfaces/dirstate.py +++ b/mercurial/interfaces/dirstate.py @@ -22,7 +22,7 @@ # TODO: all these private methods and attributes should be made # public or removed from the interface. - _ignore = interfaceutil.Attribute('Matcher for ignored files.') + _ignore = interfaceutil.Attribute("""Matcher for ignored files.""") def _ignorefiles(): """Return a list of files containing patterns to ignore.""" @@ -30,8 +30,8 @@ def _ignorefileandline(f): "Given a file `f`, return the ignore file and line that ignores it." - _checklink = interfaceutil.Attribute('Callable for checking symlinks.') - _checkexec = interfaceutil.Attribute('Callable for checking exec bits.') + _checklink = interfaceutil.Attribute("""Callable for checking symlinks.""") + _checkexec = interfaceutil.Attribute("""Callable for checking exec bits.""") @contextlib.contextmanager def parentchange():