vote up 0 vote down star

I have a django app, and I recently changed the name of the database it is supposed to use. However, manage.py doesn't seem to be using the new database.

I've doublechecked the settings.py file, and I've even added a "print settings.DATABASE_NAME" to the mange.py file, and it prints out the correct name, but still connects to the old db.

for example, ./manage.py dbshell:

NewDB
Password for user : 
Welcome to psql 8.1.11, the PostgreSQL interactive terminal.
OldDB=>

So as far as I can see, it's completely ignoring what's in the settings file.

Any idea what could be causing this?

flag

1 Answer

vote up 0 vote down check

I figured out what the problem was.

While manage.py does take the settings file, the djang.conf.settings is loaded from the sys.path rather than what is passed via manage.py.

Apparently, the old location was in the sys.path, and so it was loading the old settings file.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.