From 2220a1f74478e64ef2cfa3bae37565e4ad849318 Mon Sep 17 00:00:00 2001 From: eskilolsen Date: Sat, 24 Mar 2012 12:47:17 -0700 Subject: [PATCH] Updated Large app how to (markdown) --- Large-app-how-to.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Large-app-how-to.md b/Large-app-how-to.md index 7b2c35e..7b515eb 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -243,7 +243,7 @@ This decorator is checking that g.user has a value assigned to it, otherwise it from app.users.models import User from app.users.decorators import requires_login - mod = Blueprint('user', __name__, url_prefix='/users') + mod = Blueprint('users', __name__, url_prefix='/users') @mod.route('/me/') @requires_login