From fd0095b73f9130bd537a07dc5b13c329ef16a871 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastien=20G=C3=A9rard?= Date: Sun, 26 Apr 2020 22:28:14 +0200 Subject: [PATCH] improve recent docstring of EmbeddedDocumentList.create --- mongoengine/base/datastructures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongoengine/base/datastructures.py b/mongoengine/base/datastructures.py index 85f05c9b..d08d4930 100644 --- a/mongoengine/base/datastructures.py +++ b/mongoengine/base/datastructures.py @@ -293,7 +293,7 @@ class EmbeddedDocumentList(BaseList): .. note:: the instance of the EmbeddedDocument is not automatically saved to the database. - You still need to call save() on this EmbeddedDocumentList. + You still need to call .save() on the parent Document. :param values: A dictionary of values for the embedded document. :return: The new embedded document instance.