From eb80803454441be0f9d10232fc3b00d40682a2d7 Mon Sep 17 00:00:00 2001 From: Gabriel Hurley Date: Fri, 18 Feb 2011 13:40:53 +0000 Subject: [PATCH] Fixed #15342 -- Passed *args through to the parent class' dispatch method in the CBV example. Thanks to jnns for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15564 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/class-based-views.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/class-based-views.txt b/docs/topics/class-based-views.txt index 7446f6ab92..2612ffedba 100644 --- a/docs/topics/class-based-views.txt +++ b/docs/topics/class-based-views.txt @@ -606,7 +606,7 @@ that it can be used on an instance method. For example:: @method_decorator(login_required) def dispatch(self, *args, **kwargs): - return super(ProtectedView, self).dispatch(**kwargs) + return super(ProtectedView, self).dispatch(*args, **kwargs) In this example, every instance of ``ProtectedView`` will have login protection.