Skip to content

Commit

Permalink
fix(urls.py): Remove trailing dashes after the URL
Browse files Browse the repository at this point in the history
  • Loading branch information
gutsytechster authored and palnabarun committed Jul 27, 2020
1 parent dd5ec2c commit d99165e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion junction/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
url(r"^(?P<conference_slug>[\w-]+)/schedule/", include("junction.schedule.urls")),
# Proposals as conference home page. TODO: Needs to be enhanced
url(
r"^(?P<conference_slug>[\w-]+)--/",
r"^(?P<conference_slug>[\w-]+)/",
RedirectView.as_view(pattern_name="proposals-list"),
name="conference-detail",
),
Expand Down

0 comments on commit d99165e

Please sign in to comment.