From 2b1ecd1ad87d736739084de44d285a785d319ea8 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Thu, 1 Nov 2012 15:09:03 -0400 Subject: [PATCH] Fix name of login_required_api_view in comment (imported from commit e278256da19c3abd4ee05bd6c4318a482a25cee0) --- zephyr/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/views.py b/zephyr/views.py index 906ee6765f..6b4f1cc1c5 100644 --- a/zephyr/views.py +++ b/zephyr/views.py @@ -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):