Skip to content

Commit 0b67aec

Browse files
committed
3.0.4 - missed a thing
1 parent 0980b75 commit 0b67aec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

account/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
path("confirm_email/<str:key>/", ConfirmEmailView.as_view(), name="account_confirm_email"),
2020
path("password/", ChangePasswordView.as_view(), name="account_password"),
2121
path("password/reset/", PasswordResetView.as_view(), name="account_password_reset"),
22-
path("password/reset/<str:uidb36>/<str:token>/$", PasswordResetTokenView.as_view(), name="account_password_reset_token"),
22+
path("password/reset/<str:uidb36>/<str:token>/", PasswordResetTokenView.as_view(), name="account_password_reset_token"),
2323
path("settings/", SettingsView.as_view(), name="account_settings"),
2424
path("delete/", DeleteView.as_view(), name="account_delete"),
2525
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="django-user-accounts",
5-
version="3.0.3",
5+
version="3.0.4",
66
author="Brian Rosner",
77
author_email="[email protected]",
88
description="a Django user account app",

0 commit comments

Comments
 (0)