summaryrefslogtreecommitdiffstats
path: root/filter_plugins
diff options
context:
space:
mode:
authorThomas Wiest <twiest@redhat.com>2014-10-02 14:57:57 -0400
committerThomas Wiest <twiest@redhat.com>2014-10-02 14:58:15 -0400
commit79d03796ed5900c0c91946d36db242df994046c8 (patch)
treec5b6b056f425119f3a83822a789c243042f84cca /filter_plugins
parent5cb37d422a9aa62fef793c155a12368745cd6c87 (diff)
downloadopenshift-79d03796ed5900c0c91946d36db242df994046c8.tar.gz
openshift-79d03796ed5900c0c91946d36db242df994046c8.tar.bz2
openshift-79d03796ed5900c0c91946d36db242df994046c8.tar.xz
openshift-79d03796ed5900c0c91946d36db242df994046c8.zip
fixed oo_len doc string
Diffstat (limited to 'filter_plugins')
-rw-r--r--filter_plugins/oo_filters.py4
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)