diff options
-rwxr-xr-x | pytask/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pytask/settings.py b/pytask/settings.py index c692fc7..c38541e 100755 --- a/pytask/settings.py +++ b/pytask/settings.py @@ -12,7 +12,7 @@ MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': './pytask/pytask.db', # Or path to database file if using sqlite3. + 'NAME': './pytask/db.db', # Or path to database file if using sqlite3. 'USER': '', # Not used with sqlite3. 'PASSWORD': '', # Not used with sqlite3. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. @@ -91,7 +91,7 @@ INSTALLED_APPS = ( 'django.contrib.sites', 'django.contrib.messages', 'registration', - 'tagging', + #'tagging', 'pytask.profile', # Uncomment the next line to enable the admin: 'django.contrib.admin', |