Commit 711aa819 by Harry Marr

Merge pull request #8 from heyman/master

Fixes small issue with the monkey patching of the insert function
parents 2e932855 969e806b
...@@ -44,7 +44,9 @@ def _insert(collection_self, doc_or_docs, manipulate=True, ...@@ -44,7 +44,9 @@ def _insert(collection_self, doc_or_docs, manipulate=True,
result = _original_methods['insert']( result = _original_methods['insert'](
collection_self, collection_self,
doc_or_docs, doc_or_docs,
manipulate=manipulate,
safe=safe, safe=safe,
check_keys=check_keys,
**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