diff options
author | Thomas Wiest <twiest@gmail.com> | 2014-10-02 14:59:28 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@gmail.com> | 2014-10-02 14:59:28 -0400 |
commit | c54830c66efe0656442be312bf0dbbbdc0f58940 (patch) | |
tree | c5b6b056f425119f3a83822a789c243042f84cca | |
parent | 5cb37d422a9aa62fef793c155a12368745cd6c87 (diff) | |
parent | 79d03796ed5900c0c91946d36db242df994046c8 (diff) | |
download | openshift-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.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) |