Changeset 6364


Ignore:
Timestamp:
Nov 5, 2008, 8:56:07 AM (16 years ago)
Author:
RIck van der Zwet
Message:

os.path.join, requires trailing slash, to be affective

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/exodus/settings.py

    r6357 r6364  
    1717# Master super path, set to current working path
    1818EXODUS_ROOT =  os.path.dirname(__file__)
    19 # EXODUS_ROOT = '/srv/wleiden/exodus/trunk'
    2019
    2120# Whether to find static files which are going to be served by django if running static mode
    22 EXODUS_STATIC_ROOT = os.path.join(EXODUS_ROOT, 'static')
    23 #EXODUS_STATIC_ROOT = EXODUS_ROOT + 'exodus/static'
     21EXODUS_STATIC_ROOT = os.path.join(EXODUS_ROOT, '/static')
    2422
    2523DATABASE_ENGINE = 'sqlite3'           # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
    26 DATABASE_NAME = os.path.join(EXODUS_ROOT, 'exodus.db')
    27 #DATABASE_NAME = EXODUS_ROOT + '/exodus.db' # Or path to database file if using sqlite3.
     24#Or path to database file if using sqlite3.
     25DATABASE_NAME = os.path.join(EXODUS_ROOT, '/exodus.db')
    2826DATABASE_USER = ''             # Not used with sqlite3.
    2927DATABASE_PASSWORD = ''         # Not used with sqlite3.
Note: See TracChangeset for help on using the changeset viewer.