diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-07-06 06:53:27 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-07-06 06:53:27 +0000 |
| commit | 8f96bd2c723448ebf9dca28808942b6599d818c3 (patch) | |
| tree | 7a135ca51dfeb7aa00ede82a6fd56aac998b0048 | |
| parent | 0816f380d2f576b95300f0d405aef0372b64be03 (diff) | |
Fixed #4781 -- Typo fix. Pointed out by Simon Litchfield.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5622 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/mail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/mail.py b/django/core/mail.py index 96a32ed62d..325812a5d2 100644 --- a/django/core/mail.py +++ b/django/core/mail.py @@ -265,7 +265,7 @@ class EmailMessage(object): """ if isinstance(filename, MIMEBase): assert content == mimetype == None - self.attachements.append(filename) + self.attachments.append(filename) else: assert content is not None self.attachments.append((filename, content, mimetype)) |
