Bug 1614146 - Stop using byte literals in _hg_cleanenv. r=firefox-build-system-reviewers,glandium

Differential Revision: https://phabricator.services.mozilla.com/D62398

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Masatoshi Kimura 2020-02-11 04:47:54 +00:00
Родитель 615e78b5fc
Коммит 948598bdd4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -531,9 +531,9 @@ class BaseBootstrapper(object):
string forces that no user or system hgrc file is used.
"""
env = os.environ.copy()
env[b'HGPLAIN'] = b'1'
env['HGPLAIN'] = '1'
if not load_hgrc:
env[b'HGRCPATH'] = b''
env['HGRCPATH'] = ''
return env