From cbd311c5c0f0147b862332fb2b142c28e3cd13ef Mon Sep 17 00:00:00 2001 From: Yam Date: Wed, 13 Sep 2017 14:50:52 +0800 Subject: [PATCH] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index dc76c4c..556eaf2 100644 --- a/README.rst +++ b/README.rst @@ -73,7 +73,7 @@ mappings converted to Attrs:: > attr = AttrDict({'foo': [{'bar': 'baz'}, {'bar': 'qux'}]}) > for sub_attr in attr.foo: - > print(subattr.foo) + > print(sub_attr.bar) 'baz' 'qux'