commit | d878b97c892614fe38d343b94eea42cb07e95f43 | [log] [tgz] |
---|---|---|
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | Fri Sep 27 09:36:19 2024 -0400 |
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | Fri Sep 27 09:36:19 2024 -0400 |
tree | 02c39bcbb1c647a67f2278c5ad04c9c842c4faeb | |
parent | 1ca7cf5f2480b6902f1ce9fceaa0edf49a16a76b [diff] |
Add another debugging bit for reply-to matching Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
diff --git a/src/bugspray/__init__.py b/src/bugspray/__init__.py index bb50b64..522b4a4 100644 --- a/src/bugspray/__init__.py +++ b/src/bugspray/__init__.py
@@ -595,9 +595,10 @@ msgids = list() for pair in pairs: - if pair[1] not in msgids: + if pair[1].strip() and pair[1] not in msgids: msgids.append(pair[1]) + logger.debug('msgids=%s', str(msgids)) return msgids