Submitter | phabricator |
---|---|
Date | Oct. 10, 2019, 2:11 p.m. |
Message ID | <0d26cac6ea13285fb9cd3d89131a44e0@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/42187/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/notify.py b/hgext/notify.py --- a/hgext/notify.py +++ b/hgext/notify.py @@ -161,6 +161,7 @@ logcmdutil, mail, patch, + pycompat, registrar, util, ) @@ -559,7 +560,10 @@ host = encoding.strtolocal(socket.getfqdn()) if messageidseed: messagehash = hashlib.sha512(ctx.hex() + messageidseed) - messageid = b'<hg.%s@%s>' % (messagehash.hexdigest()[:64], host) + messageid = b'<hg.%s@%s>' % ( + pycompat.sysbytes(messagehash.hexdigest()[:64]), + host, + ) else: messageid = b'<hg.%s.%d.%d@%s>' % ( ctx,