Commit 9475b27bf2819c88980f2c45dcadd2dbc4d5411c

Authored by Carlos Coêlho
1 parent 80dfda89

Fixed settings import in form

Signed-off-by: Carlos Oliveira <carlospecter@gmail.com>
Signed-off-by: Matheus Fernandes <matheus.souza.fernandes@gmail.com>
Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
colab/accounts/forms.py
... ... @@ -15,7 +15,7 @@ from django.utils.translation import ugettext_lazy as _
15 15  
16 16 from conversejs.models import XMPPAccount
17 17  
18   -from colab import settings
  18 +from django.conf import settings
19 19  
20 20 from .utils.validators import validate_social_account
21 21 from .utils import mailman
... ...
tests/settings.py
1 1 from colab.settings import * # noqa
2 2  
3   -
  3 +SOCIAL_NETWORK_ENABLED = True
4 4 STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
5 5  
6 6 LOGGING = {
... ...