1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Added comment about implementation line.

This commit is contained in:
Michael DeHaan 2014-06-17 16:11:20 -05:00 committed by Matt Martz
parent 3ac86e57f4
commit 35a7c93c76

View file

@ -942,6 +942,7 @@ class Runner(object):
''' execute a command string over SSH, return the output '''
if not cmd:
# this can happen with powershell modules when there is no analog to a Windows command (like chmod)
return dict(stdout='', stderr='')
if executable is None: