Bug 799943 - properly search histogram names for startup regex; r=taras DONTBUILD because NPOTB

This commit is contained in:
Nathan Froyd 2012-10-10 10:19:14 -04:00
parent 5dc05ddbc1
commit c09252aad7

View File

@ -46,7 +46,7 @@ def main(argv):
all_histograms.update({ name: parameters });
if startup_histogram_re.match(name) is not None:
if startup_histogram_re.search(name) is not None:
all_histograms.update({ "STARTUP_" + name: parameters })
print json.dumps({ 'histograms': all_histograms})