Skip to content

Commit 33f499c

Browse files
committed
preventing b' being shown at the start of the slurm output
1 parent d6b8fd5 commit 33f499c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cats/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def schedule_sbatch(output: CATSOutput, args: list[str]) -> Optional[str]:
303303
*args,
304304
]
305305
)
306-
print(sbatch_output)
306+
print(sbatch_output.decode("utf-8"))
307307
return None
308308
except FileNotFoundError:
309309
return "No sbatch command found in PATH, ensure slurm is configured correctly"

0 commit comments

Comments
 (0)