Bug 1332844: allow printing Options when notifications is None; r=gbrown

(I stumbled over this while debugging)

MozReview-Commit-ID: GCIMv3Zhbp8

--HG--
extra : rebase_source : f80dbdc252726e28c72b5bb381441ba2dffb70a4
This commit is contained in:
Dustin J. Mitchell 2017-01-21 18:53:00 +00:00
Родитель ede12d1bfb
Коммит b390855d78
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -559,5 +559,5 @@ class TryOptionSyntax(object):
"jobs: " + none_for_all(self.jobs),
"trigger_tests: " + str(self.trigger_tests),
"interactive: " + str(self.interactive),
"notifications: " + self.notifications,
"notifications: " + str(self.notifications),
])