1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Adding a missing newline.

This commit is contained in:
Adam Coddington 2012-06-28 09:45:37 -07:00
parent e8550b3797
commit 050b972c68

View file

@ -11,7 +11,7 @@ class Command(BaseCommand):
self.stdout.write('Gathering messages for %s\n' % mailbox.name)
messages = mailbox.get_new_mail()
for message in messages:
self.stdout.write('Recieved %s (from %s)' % (
self.stdout.write('Recieved %s (from %s)\n' % (
message.subject,
message.from_address
))