Skip to content

Commit

Permalink
Update plugin.py
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah authored Nov 4, 2024
1 parent 7677845 commit ddde3ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudquery/sdk/serve/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def run_docker_cmd(cmd, plugin_dir):
err = (
""
if result.stderr is None
else result.stderr.decode("ascii").strip()
else result.stderr.decode("utf-8").strip()
)
raise ChildProcessError("Unable to run Docker command: %s" % err)

Expand Down

0 comments on commit ddde3ab

Please sign in to comment.