Skip to content

Commit

Permalink
Fix some strings in the Gerrit plugin log messages
Browse files Browse the repository at this point in the history
This commits fixes wrong CL status in two log messages from the Gerrit
plugin.
  • Loading branch information
hferreiro committed Jan 16, 2019
1 parent b77bff4 commit 94891b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions did/plugins/gerrit.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def fetch(self, query_string="", common_query_options=None,
to eliminate items created after since option.
"""
work_list = []
log.info(u"Searching for changes abandoned by {0}".format(self.user))
log.info(u"Searching for changes by {0}".format(self.user))
log.debug('query_string = {0}, common_query_options = {1}'.format(
query_string, common_query_options))

Expand Down Expand Up @@ -211,7 +211,7 @@ class MergedChanges(GerritUnit):
Changes successfully merged
"""
def fetch(self):
log.info(u"Searching for changes abandoned by {0}".format(self.user))
log.info(u"Searching for changes merged by {0}".format(self.user))
self.stats = GerritUnit.fetch(self, 'status:merged')
log.debug(u"self.stats = {0}".format(self.stats))

Expand Down

0 comments on commit 94891b1

Please sign in to comment.