Skip to content

Commit

Permalink
Merge pull request #20 from jensenbox/patch-1
Browse files Browse the repository at this point in the history
Allow keyword based URL parameters
  • Loading branch information
tomchristie committed Mar 28, 2014
2 parents 1598d5c + cbf0b5f commit 0beb4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vanilla/views.py
Expand Up @@ -81,7 +81,7 @@ def get(self, request, *args, **kwargs):
context = self.get_context_data(form=form)
return self.render_to_response(context)

def post(self, request):
def post(self, request, *args, **kwargs):
form = self.get_form(data=request.POST, files=request.FILES)
if form.is_valid():
return self.form_valid(form)
Expand Down

0 comments on commit 0beb4bf

Please sign in to comment.