Django 1.9 a 1.10 eleva NoReverseMatch: u'en-gb 'no es un espacio de nombres registrado

Estoy tratando de actualizar mi aplicación 1.9 a 1.10 y recibo el siguiente error al ejecutar todas las pruebas de mi unidad:

Traceback (most recent call last):   File "/home/…/tests/views/test_configurator.py", line 261, in test_view_configurator_post
    args=[self.configurator.id]),   File "/home/…/.virtualenvs/intranet/lib/python2.7/site-packages/django/urls/base.py", line 87, in reverse
    raise NoReverseMatch("%s is not a registered namespace" % key) NoReverseMatch: 'en-gb' is not a registered namespace

Misetting.py El archivo contiene lo siguiente:

LANGUAGE_CODE = 'en-gb'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
TIME_ZONE = 'Europe/London'

¿Qué me estoy perdiendo?

Respuestas a la pregunta(5)

Su respuesta a la pregunta