From 2d4d725138f0802defb3c6bd67673ab88bb9f1ba Mon Sep 17 00:00:00 2001 From: Ross Lawley Date: Wed, 17 Oct 2012 15:42:56 +0200 Subject: [PATCH] DOCS-619 Fix class name in flask tutorial --- .../write-a-tumblelog-application-with-flask-mongoengine.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorial/write-a-tumblelog-application-with-flask-mongoengine.txt b/source/tutorial/write-a-tumblelog-application-with-flask-mongoengine.txt index ecbd9909c93..003d2c491e9 100644 --- a/source/tutorial/write-a-tumblelog-application-with-flask-mongoengine.txt +++ b/source/tutorial/write-a-tumblelog-application-with-flask-mongoengine.txt @@ -819,7 +819,7 @@ class and create new classes for the new post types. Update the .. code-block:: python - class Post(db.Dynamic Document): + class Post(db.DynamicDocument): created_at = db.DateTimeField(default=datetime.datetime.now, required=True) title = db.StringField(max_length=255, required=True) slug = db.StringField(max_length=255, required=True)