Fix traceback in salt-cloud logging for Azure

This regressed in develop only, because of 20ed2c6
This commit is contained in:
Erik Johnson 2016-08-26 20:58:36 -05:00
parent 9c0156e846
commit 93588b895c

View File

@ -93,7 +93,7 @@ class NonBlockingPopen(subprocess.Popen):
log.info(
'Running command under pid %s: \'%s\'',
self.pid,
*args if logging_command is None else logging_command
args if logging_command is None else logging_command
)
def recv(self, maxsize=None):