django-oscar / django-oscar

Domain-driven e-commerce for Django

Home Page:http://oscarcommerce.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Extra ) in apps.py?

symwell opened this issue · comments

Issue Summary

Is there an extra parenthesis here?

Should

 path('<int:pk>)/vote/', login_required(self.vote_view.as_view()), name='reviews-vote'),

be

 path('<int:pk>/vote/', login_required(self.vote_view.as_view()), name='reviews-vote'),

?

yes I think so, most likely at the moment there is a ) in the url for reviews. Could you send a PR with a fix?

Hello, I have opened a PR with the fix. Please have a look. Thanks.

commented

Fixed in #4108