From fc9bcbd23dbae85cd2e357b04c7eeabaf69f911a Mon Sep 17 00:00:00 2001 From: Andreas Madsack Date: Tue, 30 Apr 2013 17:13:07 +0300 Subject: [PATCH] typo --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 512a658..d08fd36 100644 --- a/README.rst +++ b/README.rst @@ -111,7 +111,7 @@ When you make a post to mailchimp, you need to pass merge_vars. For example, in settings on the mailchimp website, the following call adds a member to a list (with a little more info than our bare minimum example up there):: list = mailchimp.utils.get_connection().get_list_by_id() - list.subscribe('example@example.com', {'EMAIL': 'example@example.com', 'FNAME': 'Monthy', 'LNAME': 'Pyhtons'}) + list.subscribe('example@example.com', {'EMAIL': 'example@example.com', 'FNAME': 'Monthy', 'LNAME': 'Pythons'}) Note the use of the 'tag' field as the key for fields (why they didn't call it 'key' or 'id' is beyond comprehension).