Skip to content

Commit

Permalink
Correct import way in documentation and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jarus committed Feb 23, 2012
1 parent b91baca commit d56b1bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -41,7 +41,7 @@ It is very simple to use MongoKit in your Flask application. Let's create a simp
from datetime import datetime
from flask import Flask, request, render_template, redirect, url_for
from flaskext.mongokit import MongoKit, Document
from flask.ext.mongokit import MongoKit, Document
app = Flask(__name__)
Expand Down
2 changes: 1 addition & 1 deletion example/todo.py
@@ -1,7 +1,7 @@
from datetime import datetime

from flask import Flask, request, render_template, redirect, url_for
from flaskext.mongokit import MongoKit, Document
from flask.ext.mongokit import MongoKit, Document

app = Flask(__name__)

Expand Down

0 comments on commit d56b1bc

Please sign in to comment.