We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 712994b commit 2aff250Copy full SHA for 2aff250
pydra/engine/audit.py
@@ -187,8 +187,9 @@ def audit_task(self, task):
187
cmd_name = command.split()[0]
188
software = f"{cmd_name} --version"
189
# take the first word of command as the name of the executable (this may not always be the case)
190
- version_cmd = sp.run(software, shell=True,
191
- stdout=sp.PIPE).stdout.decode("utf-8")
+ version_cmd = sp.run(software, shell=True, stdout=sp.PIPE).stdout.decode(
+ "utf-8"
192
+ )
193
try:
194
version_cmd = version_cmd.splitlines()[0]
195
0 commit comments