Index: appengine/findit/waterfall/extractors.py |
diff --git a/appengine/findit/waterfall/extractors.py b/appengine/findit/waterfall/extractors.py |
index 3c3f463aebbad63a09530cccd03f28cb6332c5e8..015f02312bf4bf931f27f2437104ef85b7b2b6bf 100644 |
--- a/appengine/findit/waterfall/extractors.py |
+++ b/appengine/findit/waterfall/extractors.py |
@@ -1,4 +1,4 @@ |
-# Copyright (c) 2014 The Chromium Authors. All rights reserved. |
+# Copyright 2014 The Chromium Authors. All rights reserved. |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
@@ -79,4 +79,4 @@ def ExtractSignal(master_name, bot_name, step_name, test_name, failure_log): |
# Fall back to a general-but-maybe-not-accurate extractor. |
extractor_class = EXTRACTORS.get(step_name, GeneralExtractor) |
return extractor_class().Extract( |
- master_name, bot_name, step_name, test_name, failure_log) |
+ failure_log, test_name, step_name, bot_name, master_name) |