summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/shell/csh.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/plugins/shell/csh.py')
-rw-r--r--lib/ansible/plugins/shell/csh.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ansible/plugins/shell/csh.py b/lib/ansible/plugins/shell/csh.py
index 1c383d133c..bd210f12fe 100644
--- a/lib/ansible/plugins/shell/csh.py
+++ b/lib/ansible/plugins/shell/csh.py
@@ -24,6 +24,8 @@ class ShellModule(ShModule):
# How to end lines in a python script one-liner
_SHELL_EMBEDDED_PY_EOL = '\\\n'
_SHELL_REDIRECT_ALLNULL = '>& /dev/null'
+ _SHELL_SUB_LEFT = '"`'
+ _SHELL_SUB_RIGHT = '`"'
def env_prefix(self, **kwargs):
return 'env %s' % super(ShellModule, self).env_prefix(**kwargs)