14 Dec
2005
14 Dec
'05
8:06 p.m.
--On 14. Dezember 2005 12:54:56 -0700 Nikko Wolf <nikko-wolf@earthlink.net> wrote:
So you could try this instead:
for item in itemList: try: context.afolder.manage_delObjects([item]) except: continue
Wahhhh... DON'T DO THAT. You should *never* use bare try..excepts within Zope applications. This can lead to strange and unpredictable behavior. -aj