From 0a4701f27dca85a35a1b56c31b825117ae175cd8 Mon Sep 17 00:00:00 2001 From: Jonathan Griffin Date: Fri, 1 Aug 2014 10:59:05 -0700 Subject: [PATCH] Bug 1046991 - Fix error message when no build is present for mochitest-plain, r=ahal, DONTBUILD because NPOTB --- python/mozbuild/mozbuild/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mozbuild/mozbuild/base.py b/python/mozbuild/mozbuild/base.py index 7703ae1f8cb..2cc456eed21 100644 --- a/python/mozbuild/mozbuild/base.py +++ b/python/mozbuild/mozbuild/base.py @@ -621,7 +621,7 @@ class MachCommandConditions(object): @staticmethod def is_firefox_or_mulet(cls): - """Must have a Mulet build.""" + """Must have a Firefox or Mulet build.""" return (MachCommandConditions.is_firefox(cls) or MachCommandConditions.is_mulet(cls))