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

Fix grammar of Mailbox.last_polling.help_text

This commit is contained in:
Adam Dobrawy 2016-08-16 07:18:51 +02:00
parent fc05ee6505
commit 251b12161c
2 changed files with 4 additions and 3 deletions

View file

@ -15,6 +15,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='mailbox',
name='last_polling',
field=models.DateTimeField(blank=True, null=True, help_text='The time of last successfull polling of message. It is blank for new mailbox or processing email via pipe only.', verbose_name='Last polling'),
field=models.DateTimeField(blank=True, help_text='The time of last successful polling for messages.It is blank for new mailboxes and is not set for mailboxes that only receive messages via a pipe.', null=True, verbose_name='Last polling'),
),
]