Commit 969e806b by Jonatan Heyman

Added missing arguments to original insert method

parent 2e932855
...@@ -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