diff --git a/basetheme_bootstrap/views.py b/basetheme_bootstrap/views.py
index 19db1741f04ca288e45f851469f5dea27e45ba6f..d4c6a74cec47ff391cc6555cf226e4ba50cb4d07 100644
--- a/basetheme_bootstrap/views.py
+++ b/basetheme_bootstrap/views.py
@@ -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'
diff --git a/setup.py b/setup.py
index 66864a22f994c50b7723d9e5315defeb64515a4d..7ed1d8976d0c588c5e7973869794b9df16c28f46 100644
--- a/setup.py
+++ b/setup.py
@@ -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',