Commit 2b37b0f6 by Harry Marr

Merge pull request #1 from colinhowe/master

Allow safe,multi and upsert to be passed through
parents 4785c226 90303543
...@@ -60,9 +60,9 @@ def _update(collection_self, spec, document, upsert=False, ...@@ -60,9 +60,9 @@ def _update(collection_self, spec, document, upsert=False,
collection_self, collection_self,
spec, spec,
document, document,
upsert=False, upsert=upsert,
safe=False, safe=safe,
multi=False, multi=multi,
**kwargs **kwargs
) )
total_time = (time.time() - start_time) * 1000 total_time = (time.time() - start_time) * 1000
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment