author | Manish Goregaokar <manishearth@gmail.com> |
Tue, 07 May 2019 02:34:53 +0000 | |
changeset 472849 | 7aee5a30dd15cf0e203705808de4fc84cd56393d |
parent 472848 | f1d9dca026c389f6c1cc1f71b695a565fd129a13 |
child 472850 | 88ce0c2df4d2e3cd324ce99a48e43a55bb695051 |
child 472885 | 6fd64908d113d7cdf085be1e2858e10dd69643e3 |
push id | 84860 |
push user | mgoregaokar@mozilla.com |
push date | Tue, 07 May 2019 04:29:16 +0000 |
treeherder | autoland@7aee5a30dd15 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | glandium |
bugs | 1549636 |
milestone | 68.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/python/mach/mach/main.py +++ b/python/mach/mach/main.py @@ -255,17 +255,17 @@ To see more help for a specific command, """ if module_name is None: # Ensure parent module is present otherwise we'll (likely) get # an error due to unknown parent. if b'mach.commands' not in sys.modules: 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) except IOError as e: if e.errno != errno.ENOENT: raise raise MissingFileError('%s does not exist' % path)