Mercurial > public > mercurial-scm > hg-stable
diff mercurial/manifest.py @ 44331:63d84c18247a
merge with stable
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Sat, 08 Feb 2020 03:13:45 +0530 |
parents | 48a1a974a92c c443b9ba6f63 |
children | bbecb6d80aa7 |
line wrap: on
line diff
--- a/mercurial/manifest.py Thu Feb 06 16:55:39 2020 -0500 +++ b/mercurial/manifest.py Sat Feb 08 03:13:45 2020 +0530 @@ -21,6 +21,7 @@ ) from .pycompat import getattr from . import ( + encoding, error, mdiff, pathutil, @@ -868,9 +869,10 @@ self._loadalllazy() return not self._dirs or all(m._isempty() for m in self._dirs.values()) + @encoding.strmethod def __repr__(self): return ( - b'<treemanifest dir=%s, node=%s, loaded=%s, dirty=%s at 0x%x>' + b'<treemanifest dir=%s, node=%s, loaded=%r, dirty=%r at 0x%x>' % ( self._dir, hex(self._node),