When deleting multiple entries use --continue, not --continuous.

ticket 561
This commit is contained in:
Rob Crittenden 2010-12-03 17:32:38 -05:00
parent 0ca29095a8
commit 1bcd4a389d

View File

@ -853,7 +853,7 @@ class LDAPDelete(LDAPMultiQuery):
if not delete_entry(pkey): if not delete_entry(pkey):
result = False result = False
except errors.ExecutionError: except errors.ExecutionError:
if not options.get('continuous', False): if not options.get('continue', False):
raise raise
failed.append(pkey) failed.append(pkey)
else: else: