Fix name of login_required_api_view in comment

(imported from commit e278256da19c3abd4ee05bd6c4318a482a25cee0)
This commit is contained in:
Keegan McAllister 2012-11-01 15:09:03 -04:00
parent ac6a74bd73
commit 2b1ecd1ad8
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ def require_post(view_func):
return view_func(request, *args, **kwargs)
return _wrapped_view_func
# api_key_required will add the authenticated user's user_profile to
# login_required_api_view will add the authenticated user's user_profile to
# the view function's arguments list, since we have to look it up
# anyway.
def login_required_api_view(view_func):