Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#8256 closed (duplicate)

Changeset [8282] broke settings.py

Reported by: chrj Owned by: nobody
Component: Core (Other) Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

When doing manage.py runserver it seems the settings in settings.py is ignored. I traced the error to the a change in [8282]. When doing __import__("projectname.settings") it is actually the projectname(/__init__.py) that gets imported. From help(__import__):

    When importing a module from a package, note that __import__('A.B', ...)
    returns package A when fromlist is empty, but its submodule B when
    fromlist is not empty.

I came up with a solution in the diff attached, which works for me.

Regards,

Christian

Attachments (1)

project_directory.diff (714 bytes ) - added by chrj 16 years ago.
diff agains r8320

Download all attachments as: .zip

Change History (3)

by chrj, 16 years ago

Attachment: project_directory.diff added

diff agains r8320

comment:1 by Jacob, 16 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #8246.

comment:2 by Jacob, 13 years ago

milestone: 1.0 beta

Milestone 1.0 beta deleted

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