Changeset 9591


Ignore:
Timestamp:
Aug 28, 2011, 12:05:12 PM (13 years ago)
Author:
rick
Message:

Prefix might not be present.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/django_gheat/settings.py

    r9586 r9591  
    66DJANGO_PREFIX = '/d'
    77if os.path.isfile(PROJECT_HOME + '/local_settings.py'):
    8   from local_settings import DJANGO_PREFIX
     8  try:
     9    DJANGO_PREFIX = local_settings.DJANGO_PREFIX
     10  except NameError:
     11    pass
    912
    1013DJANGO_BALANCERS = OSM_PROXY_BALANCERS = ['a','b','c','d','e','f']
Note: See TracChangeset for help on using the changeset viewer.