diff options
Diffstat (limited to 'boto/dynamodb/table.py')
-rw-r--r-- | boto/dynamodb/table.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/dynamodb/table.py b/boto/dynamodb/table.py index 0e11f8d5..b10ce04f 100644 --- a/boto/dynamodb/table.py +++ b/boto/dynamodb/table.py @@ -335,7 +335,7 @@ class Table(object): the hash_key and range_key values of the item. You can use these explicit parameters when calling the method, such as:: - >>> my_item = my_table.new_item(hash_key='a', range_key=1, + >>> my_item = my_table.new_item(hash_key='a', range_key=1, attrs={'key1': 'val1', 'key2': 'val2'}) >>> my_item {u'bar': 1, u'foo': 'a', 'key1': 'val1', 'key2': 'val2'} |