mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix bug in dns_find - execute() returned different value than expected.
This commit is contained in:
committed by
Rob Crittenden
parent
356375ef18
commit
f294bee09d
@@ -313,7 +313,7 @@ class dns_find(crud.Search):
|
||||
except errors.NotFound:
|
||||
(entries, truncated) = (tuple(), False)
|
||||
|
||||
return entries
|
||||
return (entries, truncated)
|
||||
|
||||
def output_for_cli(self, textui, result, term, **options):
|
||||
(entries, truncated) = result
|
||||
|
||||
Reference in New Issue
Block a user