Bug 1332844: allow printing Options when notifications is None; r?gbrown draft
authorDustin J. Mitchell <dustin@mozilla.com>
Sat, 21 Jan 2017 18:53:00 +0000
changeset 466261 ef031f354577c49f1239e98699fd951857670203
parent 466259 1b619d3778de99fa9109e89487f1ef83aa7b839b
child 466262 07823772ae2c7df1e08543b06105585d5590affa
push id42849
push userdmitchell@mozilla.com
push dateWed, 25 Jan 2017 18:13:06 +0000
reviewersgbrown
bugs1332844
milestone54.0a1
Bug 1332844: allow printing Options when notifications is None; r?gbrown (I stumbled over this while debugging) MozReview-Commit-ID: GCIMv3Zhbp8
taskcluster/taskgraph/try_option_syntax.py
--- a/taskcluster/taskgraph/try_option_syntax.py
+++ b/taskcluster/taskgraph/try_option_syntax.py
@@ -554,10 +554,10 @@ class TryOptionSyntax(object):
         return "\n".join([
             "build_types: " + ", ".join(self.build_types),
             "platforms: " + none_for_all(self.platforms),
             "unittests: " + none_for_all(self.unittests),
             "talos: " + none_for_all(self.talos),
             "jobs: " + none_for_all(self.jobs),
             "trigger_tests: " + str(self.trigger_tests),
             "interactive: " + str(self.interactive),
-            "notifications: " + self.notifications,
+            "notifications: " + str(self.notifications),
         ])