I am new to python and Django and am trying to determine how the following code works:
return HttpResponseRedirect(reverse('poll_results', args=(p.id,)))
Specifically the 2nd argument of the reverse function. It looks like it is setting the parameter of args equal to a tuple. Why do I need an extra comma?