From a981f5b988ad711de7ea941b15ce4b0dacbe1add Mon Sep 17 00:00:00 2001
From: Timo Graham <timograham@gmail.com>
Date: Wed, 26 Jan 2011 00:37:08 +0000
Subject: [PATCH] Fixed #15163 - typo in email docs; thanks metal for the
 report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15311 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 docs/topics/email.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/topics/email.txt b/docs/topics/email.txt
index cb6463cb16..ea6212029d 100644
--- a/docs/topics/email.txt
+++ b/docs/topics/email.txt
@@ -92,7 +92,7 @@ For example, the following code would send two different messages to
 two different sets of recipients; however, only one connection to the
 mail server would be opened::
 
-    message1 = ('Subject here', 'Here is the message', 'from@example.com, ['first@example.com', 'other@example.com'])
+    message1 = ('Subject here', 'Here is the message', 'from@example.com', ['first@example.com', 'other@example.com'])
     message2 = ('Another Subject', 'Here is another message', 'from@example.com', ['second@test.com'])
     send_mass_mail((message1, message2), fail_silently=False)