From f3a31869bb1d96699f6125f6e4e29a64778d1ba5 Mon Sep 17 00:00:00 2001 From: Andrew Halberstadt Date: Thu, 24 Aug 2017 12:30:40 -0400 Subject: [PATCH] Bug 1393509 - Fix artifact builds on windows with |mach try fuzzy|, r=dustin MozReview-Commit-ID: Fo3WzFEdLUF --HG-- extra : rebase_source : f52c2e19bdad6e28ded106cfcdc64f3464281d54 --- tools/tryselect/templates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/tryselect/templates.py b/tools/tryselect/templates.py index 3c9aa05a76c9..f3bbbee6eee0 100644 --- a/tools/tryselect/templates.py +++ b/tools/tryselect/templates.py @@ -40,7 +40,7 @@ class Artifact(Template): def context(self, artifact, no_artifact, **kwargs): if artifact: - return {'enabled': 1} + return {'enabled': '1'} if no_artifact: return @@ -49,7 +49,7 @@ class Artifact(Template): try: if build.substs.get("MOZ_ARTIFACT_BUILDS"): print("Artifact builds enabled, pass --no-artifact to disable") - return {'enabled': 1} + return {'enabled': '1'} except BuildEnvironmentNotFoundException: pass