From 0fede93075b84df8b8d36e8a0aef9c90fcb6d848 Mon Sep 17 00:00:00 2001 From: Stanislav Ochotnicky Date: Thu, 30 Jul 2009 19:02:03 +0200 Subject: Fixed settings for database this caused problems when using database function for the first time (subsequent uses were without problems) --- src/matchbox/db/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matchbox/db/settings.py b/src/matchbox/db/settings.py index bd20bac..d0397e6 100644 --- a/src/matchbox/db/settings.py +++ b/src/matchbox/db/settings.py @@ -5,4 +5,4 @@ DATABASE_USER = 'username' # Not used with sqlite3. DATABASE_PASSWORD = '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. -INSTALLED_APPS = ('db.main') +INSTALLED_APPS = ('matchbox.db.main') -- cgit v1.2.3-65-gdbad