Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
roomlist
Commits
d68b82de
Commit
d68b82de
authored
Oct 28, 2016
by
Daniel W Bond
Browse files
forgot trailing '$' on redirect_slug view
parent
4f48fcec
Changes
1
Hide whitespace changes
Inline
Side-by-side
roomlist/settings/urls.py
View file @
d68b82de
...
...
@@ -49,5 +49,5 @@ urlpatterns = patterns('',
url
(
r
'^majors/'
,
RedirectView
.
as_view
(
pattern_name
=
'list_majors'
)),
url
(
r
'^settings/'
,
RedirectSettings
.
as_view
()),
# note that this is the very last, 'cause it tries to match basically anything else
url
(
r
'^(?P<slug>[\w-]+)/'
,
RedirectSlug
.
as_view
()),
url
(
r
'^(?P<slug>[\w-]+)/
$
'
,
RedirectSlug
.
as_view
()),
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment