The hubs used by TG wrap around most of the SO functionality for transactions. The PackageHub (which is probably what you have) stores the transaction internally and is thread-safe. Here is what you probably need to get this working:
trans = hub.begin() # we are catching trans as it returns, even through we don't use it explicitly ... processing code ... hub.commit() hub.end() hth, -Adam --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

