py3: replace "if ispy3" by pycompat.bytestr()
authorYuya Nishihara <yuya@tcha.org>
Sat, 27 Jan 2018 13:11:46 +0900
changeset 35898 a2b3b5c5a25a
parent 35897 4b1c04082cdc
child 35899 d5457d94e1c9
py3: replace "if ispy3" by pycompat.bytestr()
mercurial/dispatch.py
--- a/mercurial/dispatch.py	Sat Jan 27 13:09:49 2018 +0900
+++ b/mercurial/dispatch.py	Sat Jan 27 13:11:46 2018 +0900
@@ -821,9 +821,7 @@
 
         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)