Skip to content

Commit

Permalink
Fix error message formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberdelia committed Mar 1, 2015
1 parent f3fa679 commit e3dda64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/compilers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@ def execute_command(self, command, content=None, cwd=None):
if self.verbose:
print(stderr)
if pipe.returncode != 0:
raise CompilerError("Command '%s' returned non-zero exit status %d".format(command, pipe.returncode))
raise CompilerError("Command '{0}' returned non-zero exit status {1}".format(command, pipe.returncode))
return stdout

0 comments on commit e3dda64

Please sign in to comment.