Mercurial > public > mercurial-scm > hg-stable
diff mercurial/branchmap.py @ 41844:38de3300414f
py3: convert filtername to str if it's None
I have not called pycompat.bytestr() and rather converted the value there
because I am starting to get concerned about the function call overhead of all
this bytes to str or vice versa convert functions.
Differential Revision: https://phab.mercurial-scm.org/D6042
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Sat, 02 Mar 2019 05:24:35 +0530 |
parents | 8ad46ac6728e |
children | 624d6683c705 |
line wrap: on
line diff
--- a/mercurial/branchmap.py Sat Mar 02 13:28:17 2019 -0800 +++ b/mercurial/branchmap.py Sat Mar 02 05:24:35 2019 +0530 @@ -360,7 +360,7 @@ duration = util.timer() - starttime repo.ui.log('branchcache', 'updated %s branch cache in %.4f seconds\n', - repo.filtername, duration) + repo.filtername or b'None', duration) self.write(repo)