Re: Mysterious problem with pydoc

2009-05-13 Thread aaronelliotross
On May 12, 7:18 pm, Karen Tracey wrote: > On Mon, May 11, 2009 at 7:02 PM, aaronelliotross wrote: > > > Ah ha! It's triggered by ForeignKey columns, creating a super simple > > project ( no db data, no nothin' ) with this models.py shows the > > problem. > > This sounds like: > > http://code.dja

Re: Mysterious problem with pydoc

2009-05-12 Thread Karen Tracey
On Mon, May 11, 2009 at 7:02 PM, aaronelliotross wrote: > > Ah ha! It's triggered by ForeignKey columns, creating a super simple > project ( no db data, no nothin' ) with this models.py shows the > problem. > This sounds like: http://code.djangoproject.com/ticket/8248 which was fixed a few mon

Re: Mysterious problem with pydoc

2009-05-11 Thread aaronelliotross
Ah ha! It's triggered by ForeignKey columns, creating a super simple project ( no db data, no nothin' ) with this models.py shows the problem. $ django-admin.py startproject docstring $ cd docstring/ $ django-admin.py startapp users Edit users/models.py to be: from django.db import models clas