Mercurial > public > mercurial-scm > hg
diff mercurial/ui.py @ 34208:0a2fd3bfc704
py3: convert function name to bytes in ui.configwith()
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 03 Sep 2017 17:47:21 +0900 |
parents | 0fa781320203 |
children | a254c669b475 |
line wrap: on
line diff
--- a/mercurial/ui.py Wed Aug 23 01:23:16 2017 -0400 +++ b/mercurial/ui.py Sun Sep 03 17:47:21 2017 +0900 @@ -595,7 +595,7 @@ return convert(v) except (ValueError, error.ParseError): if desc is None: - desc = convert.__name__ + desc = pycompat.sysbytes(convert.__name__) raise error.ConfigError(_("%s.%s is not a valid %s ('%s')") % (section, name, desc, v))