Hey All,
working on deleting a row in my stuff. This may be SQLObject specific,
but it messes with CherryPy. These are my classes in the model:
User(SQLObject):
...
team = ForeignKey("Team", default=None, cascade=True)
...
Team(SQLObject):
...
supervisor = ForeignKey("User", cascade=True)
members = MultipleJoin("User", joinColumn="team_id")
So I want to delete a Team that has members and a supervisor. So Now I
have the Team object and I call <Team_obj>.destroySelf().
CherryPy blows up and the server shuts down with a SystemExit Raised
exception.
Any thoughts?
Evin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---