From 4587528b9996b80bc0d6aad453bbccf856630a0a Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 26 Oct 2013 19:32:07 -0400 Subject: [PATCH] Fix typo in comment. --- lib/ansible/utils/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/utils/template.py b/lib/ansible/utils/template.py index 8ca285c7933..019c8d02ea7 100644 --- a/lib/ansible/utils/template.py +++ b/lib/ansible/utils/template.py @@ -310,7 +310,7 @@ def legacy_varReplace(basedir, raw, vars, lookup_fatal=True, depth=0, expand_lis return result def fix_ds(basedir, vars, original, depth=0): - ''' used to massage the input directory to avoid surprises later and minimize more complex recursive problems ''' + ''' used to massage the input dictionary to avoid surprises later and minimize more complex recursive problems ''' while (depth < 20): depth = depth + 1 vars2 = _fix_ds(basedir, vars, original, depth=depth)