Skip to content

Commit e3dda64

Browse files
committed
Fix error message formatting.
1 parent f3fa679 commit e3dda64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipeline/compilers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,5 @@ def execute_command(self, command, content=None, cwd=None):
101101
if self.verbose:
102102
print(stderr)
103103
if pipe.returncode != 0:
104-
raise CompilerError("Command '%s' returned non-zero exit status %d".format(command, pipe.returncode))
104+
raise CompilerError("Command '{0}' returned non-zero exit status {1}".format(command, pipe.returncode))
105105
return stdout

0 commit comments

Comments
 (0)