fix pyflakes error in process_email.py. Commit ready for merge

- Legacy-Id: 8944
This commit is contained in:
Ryan Cross 2015-01-29 00:51:55 +00:00
parent 5a0e381985
commit 99e32cdce4

View file

@ -22,6 +22,6 @@ class Command(BaseCommand):
msg = open(email, "r").read()
try:
message = process_response_email(msg)
process_response_email(msg)
except ValueError as e:
raise CommandError(e)