| Index: tools/auto_bisect/fetch_build.py
|
| diff --git a/tools/auto_bisect/fetch_build.py b/tools/auto_bisect/fetch_build.py
|
| index 711cb01cf9bc3ea13a7693dc98dd151af2d29ee6..2c1c79b41eb76ea4f4b556b9c37af8b4fd337860 100644
|
| --- a/tools/auto_bisect/fetch_build.py
|
| +++ b/tools/auto_bisect/fetch_build.py
|
| @@ -129,7 +129,7 @@ class BuildArchive(object):
|
| """
|
| base_name = 'full-build-%s' % self._PlatformName()
|
| if deps_patch_sha:
|
| - revision = '%s_%s' % (revision , deps_patch_sha)
|
| + revision = '%s_%s' % (revision, deps_patch_sha)
|
| return '%s_%s.zip' % (base_name, revision)
|
|
|
| def _PlatformName(self):
|
| @@ -264,7 +264,7 @@ def Unzip(filename, output_dir, verbose=True):
|
| # Python zipfile module. If 7z is not installed, then this may fail if the
|
| # zip file is larger than 512MB.
|
| sevenzip_path = r'C:\Program Files\7-Zip\7z.exe'
|
| - if (bisect_utils.IsWindowsHost() and os.path.exists(sevenzip_path)):
|
| + if bisect_utils.IsWindowsHost() and os.path.exists(sevenzip_path):
|
| unzip_command = [sevenzip_path, 'x', '-y']
|
| _UnzipUsingCommand(unzip_command, filename, output_dir)
|
| return
|
|
|