Skip to content

Commit

Permalink
Fix some string formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
alenz33 committed May 28, 2015
1 parent 6595f08 commit cdd13bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conduct/chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def build(self):
step.build()
except Exception:
self.log.error('CHAIN BUILD FAILED')
raise RuntimeError('Chain failed: ' % self.name)
raise RuntimeError('Chain failed: %s' % self.name)
finally:
for step in reversed(self.steps.values()):
try:
Expand Down

0 comments on commit cdd13bb

Please sign in to comment.