Revision 3b59f34b

b/snf-quotaholder-app/quotaholder_django/quotaholder_app/urls.py
32 32
# or implied, of GRNET S.A.
33 33

  
34 34
from django.conf.urls.defaults import *
35
from django.conf import settings
36 35
from views import view
37 36

  
38 37
# Uncomment the next two lines to enable the admin:
b/snf-quotaholder-app/quotaholder_django/quotaholder_app/views.py
34 34

  
35 35
from django.http import HttpResponse
36 36
from django.db import transaction 
37
from django.conf import settings
38 37
from synnefo.lib.commissioning import CallError, get_callpoint
39 38

  
40 39
from .callpoint import API_Callpoint
b/snf-quotaholder-app/quotaholder_django/settings.py
66 66

  
67 67
ROOT_URLCONF = 'quotaholder_django.urls'
68 68

  
69
try:
70
    from local_settings import *
71
except ImportError:
72
    pass

Also available in: Unified diff