"Mariano Viola" <[EMAIL PROTECTED]> writes: > Thanks but I can't have two or more object with the same title, the > problem is that I've only an object with "the hello" title but when I > try to update it I've always the same error.
You should *never* catch all exceptions like you do in your code. What happens if you exclusively catch "SQLObjectNotFound" (if you use SQLAlchemy then use the corresponding exception) on your "except"s? I believe that you're getting some exception but it is being masked. -- Jorge Godoy <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---

