Skip to content

Commit

Permalink
Fix deprecation warnings related to the settings in example project.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Jan 21, 2011
1 parent 9c42827 commit ac10b3f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/example/settings.py
Expand Up @@ -9,12 +9,12 @@

MANAGERS = ADMINS

DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = 'test.sqlite' # Or path to database file if using sqlite3.
DATABASE_USER = '' # Not used with sqlite3.
DATABASE_PASSWORD = '' # Not used with sqlite3.
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
DATABASES = dict(
default = dict(
ENGINE = 'django.db.backends.sqlite3',
NAME = 'test.sqlite',
)
)

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
Expand Down

0 comments on commit ac10b3f

Please sign in to comment.