summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Zanardo <zanardo@gmail.com>2013-11-23 19:15:51 -0200
committerAntonio Zanardo <zanardo@gmail.com>2013-11-23 19:15:51 -0200
commit8dbd91b5ad032a7ee6d80cef8b376c59d97efb74 (patch)
tree15a705e242fd30f88d330841591b14bad8540fc9
parent32986c4d645f3e968428b09b826b3e2e2a97adb5 (diff)
downloadansible-8dbd91b5ad032a7ee6d80cef8b376c59d97efb74.tar.gz
fix typo in deprecation warning
-rw-r--r--lib/ansible/utils/template.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/utils/template.py b/lib/ansible/utils/template.py
index a5965ef555..d5824e8852 100644
--- a/lib/ansible/utils/template.py
+++ b/lib/ansible/utils/template.py
@@ -301,7 +301,7 @@ def legacy_varReplace(basedir, raw, vars, lookup_fatal=True, depth=0, expand_lis
if (not '\$' in orig) and (result != orig):
from ansible import utils
# above check against \$ as templating will remove the backslash
- utils.deprecated("Legacy variable subsitution, such as using ${foo} or $foo instead of {{ foo }} is currently valid but will be phased out and has been out of favor since version 1.2. This is the last of legacy features on our deprecation list. You may continue to use this if you have specific needs for now","1.6")
+ utils.deprecated("Legacy variable substitution, such as using ${foo} or $foo instead of {{ foo }} is currently valid but will be phased out and has been out of favor since version 1.2. This is the last of legacy features on our deprecation list. You may continue to use this if you have specific needs for now","1.6")
return result
def template(basedir, varname, vars, lookup_fatal=True, depth=0, expand_lists=True, convert_bare=False, fail_on_undefined=False, filter_fatal=True):