Changeset c386673
- Timestamp:
- Jun 15, 2014, 9:42:50 PM (11 years ago)
- Branches:
- master
- Children:
- 5c334f6
- Parents:
- d604f81
- git-author:
- Alex Dehnert <adehnert@…> (06/15/14 00:11:02)
- git-committer:
- Alex Dehnert <adehnert@…> (06/15/14 21:42:50)
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r09b7c26 rc386673 3 3 django-treebeard-1.1/ 4 4 django-treebeard-1.1.tar.gz 5 local_settings.py6 local_settings_after.py5 remit/settings/local.py 6 remit/settings/local_after.py 7 7 database_settings 8 8 client/settings.py -
remit/settings/__init__.py
rf5bebab rc386673 3 3 import sys 4 4 5 SITE_ROOT = os.path.normpath(os.path. dirname(__file__))5 SITE_ROOT = os.path.normpath(os.path.join(os.path.dirname(__file__), '..')) 6 6 SITE_WEB_PATH = '' 7 7 DEFAULT_DOMAIN = 'mit.edu' … … 53 53 USE_I18N = True 54 54 55 from local _settingsimport *55 from local import * 56 56 57 57 # Absolute path to the directory that holds media. … … 126 126 USER_EMAIL_SIGNATURE = "%s Treasury" % (GROUP_NAME,) 127 127 128 from local_ settings_after import *128 from local_after import *
Note: See TracChangeset
for help on using the changeset viewer.