Re: Fixtures for django.contrib.sites.Site

2009-04-02 Thread Adam N
Thanks a ton - that's exactly what the issue was. On Apr 1, 8:28 pm, Russell Keith-Magee wrote: > On Thu, Apr 2, 2009 at 5:49 AM,AdamNelson wrote: > > How do I do a fixture for the Site model?  I've tried all sorts of different > > model names > > [ > >   { > >     "model": "sites.site", > >   

Re: Fixtures for django.contrib.sites.Site

2009-04-01 Thread Russell Keith-Magee
On Thu, Apr 2, 2009 at 5:49 AM, Adam Nelson wrote: > How do I do a fixture for the Site model?  I've tried all sorts of different > model names > [ >   { >     "model": "sites.site", >     "pk": 1, >     "fields": { >       "domain": "example.com", >       "name": "Example" >     } >   }, > ] > A

Re: Fixtures for django.contrib.sites.Site

2009-04-01 Thread Paul Menzel
Am Mittwoch, den 01.04.2009, 17:49 -0400 schrieb Adam Nelson: > How do I do a fixture for the Site model? I've tried all sorts of > different model names > > > [ > { > "model": "sites.site", > "pk": 1, > "fields": { > "domain": "example.com", > "name": "Example" > }

Fixtures for django.contrib.sites.Site

2009-04-01 Thread Adam Nelson
How do I do a fixture for the Site model? I've tried all sorts of different model names [ { "model": "sites.site", "pk": 1, "fields": { "domain": "example.com", "name": "Example" } }, ] And I get this error: ... File "/Library/Python/2.5/site-packages/django/util