summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2013-11-26 05:30:22 -0800
committerMichael DeHaan <michael.dehaan@gmail.com>2013-11-26 05:30:22 -0800
commit82c9f5bfe40e96ebb9286b3442efc9d09c8e1f5a (patch)
tree3a060548e1f76a9fddb533403fcf943925cc9b16
parent4ba51eef6fa021035e73abe66bdf7887b65919b2 (diff)
parent65885feeeb06da49c1017a3083da0f42275f0825 (diff)
downloadansible-82c9f5bfe40e96ebb9286b3442efc9d09c8e1f5a.tar.gz
Merge pull request #5060 from bcoca/assemble_fix
fixed typo for assemble function
-rw-r--r--lib/ansible/runner/action_plugins/assemble.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/runner/action_plugins/assemble.py b/lib/ansible/runner/action_plugins/assemble.py
index 73cb86f953..54036057f4 100644
--- a/lib/ansible/runner/action_plugins/assemble.py
+++ b/lib/ansible/runner/action_plugins/assemble.py
@@ -64,7 +64,7 @@ class ActionModule(object):
return self.runner._execute_module(conn, tmp, 'assemble', module_args, inject=inject, complex_args=complex_args)
# Does all work assembling the file
- path = assemble_from_fragments(src, delimiter)
+ path = _assemble_from_fragments(src, delimiter)
pathmd5 = utils.md5s(path)
remote_md5 = self.runner._remote_md5(conn, tmp, dest)