Re: Traceback in the ``runserver`` console

2009-01-18 Thread Simon Forman
On Dec 27 2008, 5:14 am, "Russell Keith-Magee" wrote: > On Sat, Dec 27, 2008 at 2:32 AM, Fridrik Mar Jonsson > wrote: > > > > > Hi Djangonians, > > > I recently had an instance where it would have been really convenient > > to see the error and a traceback in the ``runserver`` console instead >

Re: Cannot assign "": "Character.user_profile" must be a "UserProfile" instance.

2008-09-23 Thread Simon Forman
Thanks Karen, I must have gotten it just as you posted your reply, Thanks anyhow, ~Simon On Sep 23, 2:59 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Tue, Sep 23, 2008 at 5:47 PM, Simon Forman <[EMAIL PROTECTED]> wrote: > > > I'm getting an e

Re: Cannot assign "": "Character.user_profile" must be a "UserProfile" instance.

2008-09-23 Thread Simon Forman
profile = user.get_profile() D'oh, got it. ~Simon On Sep 23, 2:47 pm, Simon Forman <[EMAIL PROTECTED]> wrote: > I'm getting an error I can't figure out. > > I have a "UserProfile" class that is the AUTH_PROFILE_MODULE setting, > but then when I

Cannot assign "": "Character.user_profile" must be a "UserProfile" instance.

2008-09-23 Thread Simon Forman
I'm getting an error I can't figure out. I have a "UserProfile" class that is the AUTH_PROFILE_MODULE setting, but then when I am trying to create an object from a model class that has a ForeignKey for that UserProfile class char = Character( user_profile = request.user.profile, ... where