Skip to content

Commit

Permalink
fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jharshman committed Jan 16, 2024
1 parent 19b4293 commit c87bfd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assetman/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def run_proc(cmd, stdin=None):
raise CompileError(cmd, err)
elif err:
logging.warning('%s stderr:\n%s', cmd[0], err)
return out
return out.decode()

class CompileError(Exception):
"""Error encountered while compiling assets."""
Expand Down

0 comments on commit c87bfd2

Please sign in to comment.