diff options
-rw-r--r-- | filter_plugins/oo_filters.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filter_plugins/oo_filters.py b/filter_plugins/oo_filters.py index 77abfb2a4..703506b88 100644 --- a/filter_plugins/oo_filters.py +++ b/filter_plugins/oo_filters.py @@ -10,8 +10,8 @@ def oo_pdb(arg): return arg def oo_len(arg): - ''' This returns the size of the argument - Ex: "{{ hostvars | oo_size }}" + ''' This returns the length of the argument + Ex: "{{ hostvars | oo_len }}" ''' return len(arg) |