Fix Method Resolution Order

This commit is contained in:
PCoder 2018-04-07 13:15:44 +02:00
parent 178ff8da38
commit 7b1cb975df
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ class SignupValidateView(HostingContextMixin, TemplateView):
return context
class SignupValidatedView(HostingContextMixin, SignupValidateView):
class SignupValidatedView(SignupValidateView, HostingContextMixin):
template_name = "hosting/signup_validate.html"
def get_context_data(self, **kwargs):