Skip to content

Commit 5a0e381

Browse files
committed
Fix logging problem in IPR mail handling. Commit ready for merge.
- Legacy-Id: 8903
1 parent bfeb650 commit 5a0e381

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

ietf/ipr/mail.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,5 @@ def process_response_email(msg):
192192
in_reply_to = to_message
193193
)
194194

195+
log(u"Received IPR email from %s" % ietf_message.frm)
195196
return ietf_message

ietf/ipr/management/commands/process_email.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from django.core.management.base import BaseCommand, CommandError
55

6-
from ietf.utils.log import log
76
from ietf.ipr.mail import process_response_email
87

98
import debug # pyflakes:ignore
@@ -24,6 +23,5 @@ def handle(self, *args, **options):
2423

2524
try:
2625
message = process_response_email(msg)
27-
log(u"Received IPR email from %s" % message.frm)
2826
except ValueError as e:
2927
raise CommandError(e)

0 commit comments

Comments
 (0)