summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wiest <twiest@gmail.com>2014-10-02 14:59:28 -0400
committerThomas Wiest <twiest@gmail.com>2014-10-02 14:59:28 -0400
commitc54830c66efe0656442be312bf0dbbbdc0f58940 (patch)
treec5b6b056f425119f3a83822a789c243042f84cca
parent5cb37d422a9aa62fef793c155a12368745cd6c87 (diff)
parent79d03796ed5900c0c91946d36db242df994046c8 (diff)
downloadopenshift-c54830c66efe0656442be312bf0dbbbdc0f58940.tar.gz
openshift-c54830c66efe0656442be312bf0dbbbdc0f58940.tar.bz2
openshift-c54830c66efe0656442be312bf0dbbbdc0f58940.tar.xz
openshift-c54830c66efe0656442be312bf0dbbbdc0f58940.zip
Merge pull request #8 from twiest/quick
fixed oo_len doc string
-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)