Re: same code runs on two machines and barfs on the third [solved]

2012-02-12 Thread kenneth gonsalves
On Wed, 2012-02-08 at 12:45 +0530, kenneth gonsalves wrote: > On Tue, 2012-02-07 at 19:29 +1100, Mike Dewhirst wrote: > > On 7/02/2012 6:14pm, kenneth gonsalves wrote: > > > On Tue, 2012-02-07 at 08:06 +0100, Babatunde Akinyanmi wrote: > > >> Perhaps you made a change to a model and forgot to syncd

Re: same code runs on two machines and barfs on the third

2012-02-08 Thread akaariai
On Feb 8, 11:27 am, kenneth gonsalves wrote: > On Wed, 2012-02-08 at 00:15 -0800, akaariai wrote: > > On Feb 8, 9:15 am, kenneth gonsalves wrote: > > > On Tue, 2012-02-07 at 19:29 +1100, Mike Dewhirst wrote: > > > > On 7/02/2012 6:14pm, kenneth gonsalves wrote: > > > > > On Tue, 2012-02-07 at 0

Re: same code runs on two machines and barfs on the third

2012-02-08 Thread kenneth gonsalves
On Wed, 2012-02-08 at 00:15 -0800, akaariai wrote: > On Feb 8, 9:15 am, kenneth gonsalves wrote: > > On Tue, 2012-02-07 at 19:29 +1100, Mike Dewhirst wrote: > > > On 7/02/2012 6:14pm, kenneth gonsalves wrote: > > > > On Tue, 2012-02-07 at 08:06 +0100, Babatunde Akinyanmi wrote: > > > >> Perhaps yo

Re: same code runs on two machines and barfs on the third

2012-02-08 Thread akaariai
On Feb 8, 9:15 am, kenneth gonsalves wrote: > On Tue, 2012-02-07 at 19:29 +1100, Mike Dewhirst wrote: > > On 7/02/2012 6:14pm, kenneth gonsalves wrote: > > > On Tue, 2012-02-07 at 08:06 +0100, Babatunde Akinyanmi wrote: > > >> Perhaps you made a change to a model and forgot to syncdb on your > > >

Re: same code runs on two machines and barfs on the third

2012-02-07 Thread kenneth gonsalves
On Tue, 2012-02-07 at 19:29 +1100, Mike Dewhirst wrote: > On 7/02/2012 6:14pm, kenneth gonsalves wrote: > > On Tue, 2012-02-07 at 08:06 +0100, Babatunde Akinyanmi wrote: > >> Perhaps you made a change to a model and forgot to syncdb on your > >> Fedora 15 machine. > > > > When you have elimina

Re: same code runs on two machines and barfs on the third

2012-02-07 Thread Mike Dewhirst
On 7/02/2012 6:14pm, kenneth gonsalves wrote: On Tue, 2012-02-07 at 08:06 +0100, Babatunde Akinyanmi wrote: Perhaps you made a change to a model and forgot to syncdb on your Fedora 15 machine. When you have eliminated all the possibilities what remains must be the problem :) The trick

Re: same code runs on two machines and barfs on the third

2012-02-06 Thread kenneth gonsalves
On Tue, 2012-02-07 at 08:06 +0100, Babatunde Akinyanmi wrote: > Perhaps you made a change to a model and forgot to syncdb on your > Fedora 15 machine. no -- regards Kenneth Gonsalves -- You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: same code runs on two machines and barfs on the third

2012-02-06 Thread Babatunde Akinyanmi
Perhaps you made a change to a model and forgot to syncdb on your Fedora 15 machine. On 2/7/12, kenneth gonsalves wrote: > hi, > > this is the relevant part of my model: > > class Team(models.Model): > name = models.CharField(_("Team Name"),max_length=150,unique=True) > members = >

same code runs on two machines and barfs on the third

2012-02-06 Thread kenneth gonsalves
hi, this is the relevant part of my model: class Team(models.Model): name = models.CharField(_("Team Name"),max_length=150,unique=True) members = tournament = models.ForeignKey(Tournament) in my view I have the following line of code: cr = Team.objects.filter(tournament_id=tournid)