Skip to content

Commit 763da57

Browse files
committed
ExecutableService: bugfix
1 parent b89d1e0 commit 763da57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python.d/python_modules/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ def _get_raw_data(self, stderr=False):
881881
try:
882882
p = Popen(self.command, stdout=PIPE, stderr=PIPE)
883883
except Exception as error:
884-
self.error("Executing command", self.command, "resulted in error:", str(error))
884+
self.error("Executing command", " ".join(self.command), "resulted in error:", str(error))
885885
return None
886886
data = list()
887887
std = p.stderr if stderr else p.stdout

0 commit comments

Comments
 (0)