Skip to content
Snippets Groups Projects
Commit 39278981 authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

python 3.5 compatibility

parent f366f7bc
No related branches found
No related tags found
No related merge requests found
Pipeline #48346 passed
......@@ -126,7 +126,7 @@ def send_account_created(request, user, auto_active=False, next_page=None):
'token': tokens.account_activation_token.make_token(user)
})
if next_page:
activation_link += f"?next={next_page}"
activation_link += "?next=" + next_page
if auto_active:
message = ugettext(
'Dear %(first_name)s %(last_name)s\n\n'
......
......@@ -7,7 +7,7 @@ readme = open('README.rst').read()
setup(
name='django-basetheme-bootstrap',
version='0.2.54',
version='0.2.55',
description='Django Basetheme Bootstrap',
long_description=readme,
author='Bryan Brancotte',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment