diff options
author | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-07-30 19:02:03 +0200 |
---|---|---|
committer | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-07-31 10:51:32 +0200 |
commit | 0fede93075b84df8b8d36e8a0aef9c90fcb6d848 (patch) | |
tree | 626e6ce52a917497da6b0c03b92992af7116bfc2 | |
parent | Started adding information to database (diff) | |
download | collagen-0fede93075b84df8b8d36e8a0aef9c90fcb6d848.tar.gz collagen-0fede93075b84df8b8d36e8a0aef9c90fcb6d848.tar.bz2 collagen-0fede93075b84df8b8d36e8a0aef9c90fcb6d848.zip |
Fixed settings for database
this caused problems when using database function for the first time
(subsequent uses were without problems)
-rw-r--r-- | src/matchbox/db/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |