summaryrefslogtreecommitdiffstats
path: root/ipalib/frontend.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/frontend.py')
-rw-r--r--ipalib/frontend.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipalib/frontend.py b/ipalib/frontend.py
index 672f5576b..d483c11de 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -1050,7 +1050,9 @@ class Command(HasParam):
continue
result = output[o]
- if o.lower() == 'count' and result == 0:
+ if o == 'value':
+ continue
+ elif o.lower() == 'count' and result == 0:
rv = 1
elif o.lower() == 'failed':
if entry_count(result) == 0: