Explorar o código

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
Gabriel Hurley %!s(int64=14) %!d(string=hai) anos
pai
achega
eb80803454
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      docs/topics/class-based-views.txt

+ 1 - 1
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.