Opened 12 years ago

Closed 12 years ago

#18564 closed Uncategorized (invalid)

Adding a python module with same name like Django project makes "./manage.py syncdb" raise ImproperlyConfigured, "You haven't set the DATABASE_ENGINE setting yet."

Reported by: micha.pietsch@… Owned by: nobody
Component: Uncategorized Version: 1.3
Severity: Normal Keywords:
Cc: micha.pietsch@… Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi,

I set up a Django project for a helpdesk and called it "helpdesk". Didn't notice that when I put django-helpdesk into the python path of course I had two python modules with the same name.

Trying to "syncdb" I got ImproperlyConfigured, "You haven't set the DATABASE_ENGINE setting yet." which is misleading when trying to find and fix such a small mistake like the bad module naming.

Micha

Change History (3)

comment:1 by Claude Paroz, 12 years ago

When name conflict, the application can fail in multiple place (or not). It depends on what you do where, so we cannot help you unless we know exactly where the proper exception has been swallowed. Please try to debug and give us more details.

comment:2 by micha.pietsch@…, 12 years ago

Ok, I figured out what happens:
Django tries to look up the database settings. Instead of <project>.settings it uses <app/module>.settings where it doesn't find database settings and so it raises the error.

To reproduce:
Remove any module from PYTHONPATH, start a Django project with the same name, configure it to use sqlite and run syncdb. Add the module again. Run syncdb. It raises the error. Copy the database settings into <app/module>.settings for testing and run syncdb. Now it's ok.

Before looking up settings or else inside the project it would be good to check if there is a name conflict.

comment:3 by Carl Meyer, 12 years ago

Resolution: invalid
Status: newclosed

It is not possible for Django to "check if there is a name conflict" without re-implementing large chunks of Python's import system. Django _already_ prevents you from creating a project with a package name that conflicts with some other package on sys.path; this is the most we can reasonably do. If you circumvent that by taking modules off PYTHONPATH and putting them back on later, Django has no way to know that there are two modules with a conflicting name on sys.path, because Python's import system doesn't provide any way to find that out. All we know is what we get back when we "import helpdesk", and we have to work with that as best we can.

Normally in this case you'd get a quite clear error that your DJANGO_SETTINGS_MODULE "helpdesk.settings" does not exist. It sounds like you have even more of an unusual edge case where the other module that is shadowing your project on sys.path _also_ has its own "settings" submodule. In this case, again, there is no way that Django can know that this settings module is not actually the one you are intending to use - so the error you get is the clearest one Django can give.

Note: See TracTickets for help on using tickets.
Back to Top