Adrian Holovaty <[EMAIL PROTECTED]> writes:

> On 1/29/06, Jeremy Jones <[EMAIL PROTECTED]> wrote:
>> Nevermind.  Apparently, my reference to a class attribute in my __repr__
>> was messing stuff up.  I guess you can't do that....
>
> You can definitely reference class attributes in __repr__() -- but you
> need to use the right API function for related objects, which is, in
> your case, "self.get_product_group().name".

I was trying django (0.91) out yesterday and ran into a ui problem with
that. In tutorial it's advised to have a __repr__(self) defined for
models, and I did, except for one model where it was wrong:
- -
class Foo (meta.Model):
     name = meta.CharField (maxlength=100):
     def __repr__(self):
         return name;
- -

note missing 'self.' from __repr__.

The surprising result was that I got a _plaintext_ backtrace, not the
pwetty one :)

Is it a bug or intended behaviour? (backtrace was pretty much useless)

--
  Psi -- <http://www.iki.fi/pasi.savolainen>

Reply via email to