# HG changeset patch # User Yuya Nishihara # Date 2018-01-27 04:11:46 # Node ID a2b3b5c5a25ae194346bd9c18b194d564683e11e # Parent 4b1c04082cdc6fa5e61a5dddf95a14768f506e05 py3: replace "if ispy3" by pycompat.bytestr() diff --git a/mercurial/dispatch.py b/mercurial/dispatch.py --- a/mercurial/dispatch.py +++ b/mercurial/dispatch.py @@ -821,9 +821,7 @@ def _dispatch(req): if options['verbose'] or options['debug'] or options['quiet']: for opt in ('verbose', 'debug', 'quiet'): - val = str(bool(options[opt])) - if pycompat.ispy3: - val = val.encode('ascii') + val = pycompat.bytestr(bool(options[opt])) for ui_ in uis: ui_.setconfig('ui', opt, val, '--' + opt)