Skip to content

Commit

Permalink
Fix over-broad regex on link/.
Browse files Browse the repository at this point in the history
Closes #313.
  • Loading branch information
mik3y committed Aug 18, 2014
1 parent da74d2b commit be393fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Current Version (in development)
--------------------------------
* Bugfix: Issue #309 (cannot reset password on private sites).
* Redis logging backend is configurable; see :ref:`settings` (thanks Jared).
* Bugfix: Issue #313 (``link/`` matching on usernames).

Version 1.0.1 (2014-07-21)
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion pykeg/web/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
(r'^kegadmin/', include('pykeg.web.kegadmin.urls')),

### Shortcuts
(r'link/?$', RedirectView.as_view(pattern_name='kegadmin-link-device'))
(r'^link/?$', RedirectView.as_view(pattern_name='kegadmin-link-device'))
)

if 'pykeg.web.setup_wizard' in settings.INSTALLED_APPS:
Expand Down

0 comments on commit be393fe

Please sign in to comment.