Opened 18 years ago

Closed 18 years ago

#2245 closed defect (duplicate)

django.contrib.humanize in INSTALLED_APPS prevent syncdb run

Reported by: jmlee@… Owned by: Adrian Holovaty
Component: Core (Management commands) Version: dev
Severity: major Keywords: manage.py syncdb humanize
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

  • Steps to reproduce:
    1. django-admin.py startproject aaa
    2. cd aaa
    3. edit settings.py
      1. DATABASE_*
      2. add 'django.contrib.humanize' to INSTALLED_APPS setting.
    4. ./manage.py syncdb
  • Expected result: no error
  • Actual result: get following error
    Error: None couldn't be installed, because there were errors in your model:
    django.contrib.humanize: 'module' object has no attribute 'models'
    
  • I used revision 3214

Change History (3)

comment:1 by anonymous, 18 years ago

priority: normalhigh
Severity: normalmajor

comment:2 by anonymous, 18 years ago

Component: Toolsdjango-admin.py

comment:3 by Malcolm Tredinnick, 18 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #1812.

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