return HttpResponseRedirect(reverse('polls:results', args=(question.id)))
=>
return HttpResponseRedirect(reverse('polls:results', args=(question.id,)))
return HttpResponseRedirect(reverse('polls:results', args=(question.id)))
=>
return HttpResponseRedirect(reverse('polls:results', args=(question.id,)))