Skip to content
Snippets Groups Projects
Commit 5f8b6617e962 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

interfaces: use triple quotes for Attribute value

Otherwise the source transformer converts it to bytes and
test-check-interfaces.py complains on Python 3.

Differential Revision: https://phab.mercurial-scm.org/D6919
parent f1dffb37f27c
No related branches found
No related tags found
No related merge requests found
......@@ -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():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment