diff options
author | Magnus Hagander | 2019-02-05 22:01:05 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-02-05 22:01:05 +0000 |
commit | a32f4007670330d05a834db1b67687ab8b8c3b34 (patch) | |
tree | 02322951c6ab86287bf26ff7634292df9357f81e /pgcommitfest/mailqueue/models.py | |
parent | 83edf49e86d2db5d7a75f6c1068d3e62bda99923 (diff) |
Convert all spaces to tabs
Diffstat (limited to 'pgcommitfest/mailqueue/models.py')
-rw-r--r-- | pgcommitfest/mailqueue/models.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pgcommitfest/mailqueue/models.py b/pgcommitfest/mailqueue/models.py index f2e7d19..f75ca37 100644 --- a/pgcommitfest/mailqueue/models.py +++ b/pgcommitfest/mailqueue/models.py @@ -1,11 +1,11 @@ from django.db import models class QueuedMail(models.Model): - sender = models.EmailField(max_length=100, null=False, blank=False) - receiver = models.EmailField(max_length=100, null=False, blank=False) - # We store the raw MIME message, so if there are any attachments or - # anything, we just push them right in there! - fullmsg = models.TextField(null=False, blank=False) + sender = models.EmailField(max_length=100, null=False, blank=False) + receiver = models.EmailField(max_length=100, null=False, blank=False) + # We store the raw MIME message, so if there are any attachments or + # anything, we just push them right in there! + fullmsg = models.TextField(null=False, blank=False) - def __unicode__(self): - return "%s: %s -> %s" % (self.pk, self.sender, self.receiver) + def __unicode__(self): + return "%s: %s -> %s" % (self.pk, self.sender, self.receiver) |