Project

General

Profile

Bug #179

Updated by Joseph Spiros over 11 years ago

An error occurs with the @attribute_set@ `attribute_set` GenericRelation on Entity when two subclasses of Entity are created (in different apps) with the same class name. That is to say, if I have @class A(Entity)@ `class A(Entity)` in one app, and @class A(Entity)@ `class A(Entity)` in another, the second one will not make it through Django model validation.

Back