diff options
author | Jesse Keating <omgjlk@us.ibm.com> | 2017-05-12 11:29:16 -0700 |
---|---|---|
committer | Jesse Keating <omgjlk@us.ibm.com> | 2017-06-01 12:22:21 -0700 |
commit | 186f14a3e149bbfb915aaee96c86b2c3f14ac669 (patch) | |
tree | 120818080603d2420a809ce0249bdb2507611cb6 /zuul/manager/__init__.py | |
parent | 54604acf4ceb3e83e584f4775f651b62431c3b5f (diff) | |
download | zuul-186f14a3e149bbfb915aaee96c86b2c3f14ac669.tar.gz |
Remove pipeline argument from various report fncts
The pipeline can be obtained by way of the item which was also being
passed in.
Change-Id: Ibcafa7daef3567c840a23defcab6fd40a9c6b206
Signed-off-by: Jesse Keating <omgjlk@us.ibm.com>
Diffstat (limited to 'zuul/manager/__init__.py')
-rw-r--r-- | zuul/manager/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zuul/manager/__init__.py b/zuul/manager/__init__.py index 76499448d..6ea182bbc 100644 --- a/zuul/manager/__init__.py +++ b/zuul/manager/__init__.py @@ -165,7 +165,7 @@ class PipelineManager(object): report_errors = [] if len(action_reporters) > 0: for reporter in action_reporters: - ret = reporter.report(self.pipeline, item) + ret = reporter.report(item) if ret: report_errors.append(ret) if len(report_errors) == 0: |