fixed typo for assemble function

pull/4420/head
Brian Coca 2013-11-26 08:30:28 -05:00
parent 4ba51eef6f
commit 65885feeeb
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class ActionModule(object):
return self.runner._execute_module(conn, tmp, 'assemble', module_args, inject=inject, complex_args=complex_args) return self.runner._execute_module(conn, tmp, 'assemble', module_args, inject=inject, complex_args=complex_args)
# Does all work assembling the file # Does all work assembling the file
path = assemble_from_fragments(src, delimiter) path = _assemble_from_fragments(src, delimiter)
pathmd5 = utils.md5s(path) pathmd5 = utils.md5s(path)
remote_md5 = self.runner._remote_md5(conn, tmp, dest) remote_md5 = self.runner._remote_md5(conn, tmp, dest)