reverse needs kwargs keyword

Since we aren't passing in any args, we must specify kwargs as a keyword
argument.
This commit is contained in:
Ryan Hiebert 2015-11-03 21:45:21 -06:00
parent ae008316fa
commit b86e5af878

View File

@ -407,7 +407,7 @@ In this case we'd need to override `HyperlinkedRelatedField` to get the behavior
'organization_slug': obj.organization.slug,
'customer_pk': obj.pk
}
return reverse(view_name, url_kwargs, request=request, format=format)
return reverse(view_name, kwargs=url_kwargs, request=request, format=format)
def get_object(self, view_name, view_args, view_kwargs):
lookup_kwargs = {