Bug 1549636: use uuid4() in mach; r=glandium

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Manish Goregaokar 2019-05-07 02:34:53 +00:00
Родитель 65317978a2
Коммит 409a85d649
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -260,7 +260,7 @@ To see more help for a specific command, run:
mod = imp.new_module(b'mach.commands')
sys.modules[b'mach.commands'] = mod
module_name = 'mach.commands.%s' % uuid.uuid1().get_hex()
module_name = 'mach.commands.%s' % uuid.uuid4().get_hex()
try:
imp.load_source(module_name, path)