Mercurial > hg-stable
changeset 40306:da1629c7dda1
f: fix a Python 3 bytes/string issue
I suspect we should test this tool in isolation, but we don't yet. Oh well.
Differential Revision: https://phab.mercurial-scm.org/D5061
author | Augie Fackler <augie@google.com> |
---|---|
date | Sat, 13 Oct 2018 04:20:22 -0400 |
parents | 6519f5aee06f |
children | 43f0a37bd9ed |
files | tests/f |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/f Sun Oct 14 08:55:30 2018 -0400 +++ b/tests/f Sat Oct 13 04:20:22 2018 -0400 @@ -88,9 +88,11 @@ if opts.newer: # mtime might be in whole seconds so newer file might be same if stat.st_mtime >= os.stat(opts.newer).st_mtime: - facts.append(b'newer than %s' % opts.newer) + facts.append(b'newer than %s' % opts.newer.encode( + 'utf8', 'replace')) else: - facts.append(b'older than %s' % opts.newer) + facts.append(b'older than %s' % opts.newer.encode( + 'utf8', 'replace')) if opts.md5 and content is not None: h = hashlib.md5(content) facts.append(b'md5=%s' % binascii.hexlify(h.digest())[:opts.bytes])