Removed unused 'status: ' string from log line

(Re-proposed from I3a04c3b4f907edf77a6e02c2a4314f15ef1997c3)

Change-Id: Ib6b5b5ab3aaaf49357fdfb59f55d00c40d2ad470
This commit is contained in:
Monty Taylor 2017-09-18 11:24:25 -05:00 committed by James E. Blair
parent 027ba99259
commit d8d6456c8e
1 changed files with 3 additions and 3 deletions

View File

@ -112,10 +112,10 @@ class GithubReporter(BaseReporter):
description = 'status: %s' % self._commit_status
self.log.debug(
'Reporting change %s, params %s, status:\n'
'Reporting change %s, params %s, '
'context: %s, state: %s, description: %s, url: %s' %
(item.change, self.config, context, state,
description, url))
(item.change, self.config,
context, state, description, url))
self.connection.setCommitStatus(
project, sha, state, url, description, context)