Skip to content

Commit 99e32cd

Browse files
committed
fix pyflakes error in process_email.py. Commit ready for merge
- Legacy-Id: 8944
1 parent 5a0e381 commit 99e32cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/management/commands/process_email.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ def handle(self, *args, **options):
2222
msg = open(email, "r").read()
2323

2424
try:
25-
message = process_response_email(msg)
25+
process_response_email(msg)
2626
except ValueError as e:
2727
raise CommandError(e)

0 commit comments

Comments
 (0)