diff --git a/buildman/jobutil/buildreporter.py b/buildman/jobutil/buildreporter.py index f8ccf1fd5..08e16576b 100644 --- a/buildman/jobutil/buildreporter.py +++ b/buildman/jobutil/buildreporter.py @@ -69,3 +69,6 @@ class BuildMetrics(object): failed_name, incompleted_name) else: self._reporter = NullReporter() + + def __getattr__(self, name): + return getattr(self._reporter, name, None)