# HG changeset patch # User Steve Losh # Date 1260588147 18000 # Node ID b3eb9a757704d4105d0ef0e38ac915cb336e2dc3 # Parent 4454e6123e627e5eff924e7838c126353b7fda84 Move the settings to work. diff -r 4454e6123e62 -r b3eb9a757704 settings.py --- a/settings.py Fri Dec 11 22:20:29 2009 -0500 +++ b/settings.py Fri Dec 11 22:22:27 2009 -0500 @@ -19,11 +19,6 @@ DATABASE_HOST = deploy.DATABASE_HOST DATABASE_PORT = deploy.DATABASE_PORT - -# django-simplebackup settings -BACKUP_DIRECTORY = os.path.join(BASE_DIR, 'backup') -BACKUP_EXCLUDE = ['admin', 'sessions'] - # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name # although not all choices may be available on all operating systems. @@ -44,6 +39,10 @@ # Base directory. BASE_DIR = os.path.dirname(__file__) +# django-simplebackup settings +BACKUP_DIRECTORY = os.path.join(BASE_DIR, 'backup') +BACKUP_EXCLUDE = ['admin', 'sessions'] + # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" MEDIA_ROOT = os.path.join(BASE_DIR, 'site-media/')