From 757d31cf35ab19605b4ea989beda74e3669ad4af Mon Sep 17 00:00:00 2001 From: Jimmy Berry Date: Wed, 23 Aug 2017 15:15:02 -0500 Subject: [PATCH] ReviewBot: comment_write(): place debug_key at the end for consistency. --- ReviewBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReviewBot.py b/ReviewBot.py index a902c9cf..2d4fdc9f 100644 --- a/ReviewBot.py +++ b/ReviewBot.py @@ -460,7 +460,7 @@ class ReviewBot(object): (not identical and comment['comment'].count('\n') == message.count('\n'))) ): # Assume same state/result and number of lines in message is duplicate. - self.logger.debug('previous comment on {} too similar'.format(debug_key)) + self.logger.debug('previous comment too similar on {}'.format(debug_key)) return self.logger.debug('adding comment to {}: {}'.format(debug_key, message))