SQLObject 0.7.0

Database used: postgresql 8.0 (although I don't think this is a
database specific issue)

Here's a model that shows the problem:

class fooOne(SQLObject):
    name = StringCol()
    otherFoo = RelatedJoin('fooTwo')

class fooTwo(SQLObject):
    name = StringCol()
    otherBar = RelatedJoin('fooOne')


The catwalk code as it currently exists would try to call
"removefooOne". I see methods removeFooOne and removeFooTwo, not
removefooOne or removefooTwo.

tg-admin shell
a = fooOne.get(1)
dir(a)

Reply via email to