Mercurial > public > mercurial-scm > hg-stable
diff hgext/journal.py @ 37318:9954d0e2ad00
py3: use pycompat.bytestr() intsead of str
Differential Revision: https://phab.mercurial-scm.org/D3071
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Mon, 02 Apr 2018 17:06:42 +0530 |
parents | a8a902d7176e |
children | dea771e63c3c |
line wrap: on
line diff
--- a/hgext/journal.py Mon Mar 19 12:46:56 2018 +0530 +++ b/hgext/journal.py Mon Apr 02 17:06:42 2018 +0530 @@ -226,7 +226,7 @@ def __bytes__(self): """bytes representation for storage""" - time = ' '.join(map(str, self.timestamp)) + time = ' '.join(map(pycompat.bytestr, self.timestamp)) oldhashes = ','.join([node.hex(hash) for hash in self.oldhashes]) newhashes = ','.join([node.hex(hash) for hash in self.newhashes]) return '\n'.join((