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:
parent
e8550b3797
commit
050b972c68
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ class Command(BaseCommand):
|
||||||
self.stdout.write('Gathering messages for %s\n' % mailbox.name)
|
self.stdout.write('Gathering messages for %s\n' % mailbox.name)
|
||||||
messages = mailbox.get_new_mail()
|
messages = mailbox.get_new_mail()
|
||||||
for message in messages:
|
for message in messages:
|
||||||
self.stdout.write('Recieved %s (from %s)' % (
|
self.stdout.write('Recieved %s (from %s)\n' % (
|
||||||
message.subject,
|
message.subject,
|
||||||
message.from_address
|
message.from_address
|
||||||
))
|
))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue