From: Lars Wirzenius Date: Sat, 9 Dec 2006 13:00:34 +0000 (+0200) Subject: Fix typo on variable name. X-Git-Url: https://git.sommitrealweird.co.uk/eoc.git/commitdiff_plain/f9259c79966a76b34330a0fb57cd0c55361bbab2 Fix typo on variable name. --- diff --git a/eoc.py b/eoc.py index f855b36..dadeb46 100644 --- a/eoc.py +++ b/eoc.py @@ -440,7 +440,7 @@ class MailingListManager: sys.exit(1) else: status = forkexec([self.sendmail, "-oi", "-f", - envelope_sender] + recipienients, text) + envelope_sender] + recipients, text) if status: error("%s returned %s, mail sending probably failed" % (self.sendmail, status))