Skip to content
This repository has been archived by the owner on Feb 2, 2018. It is now read-only.

Commit

Permalink
bus: Remove old formatting style in exception
Browse files Browse the repository at this point in the history
  • Loading branch information
ashcrow authored and mbarnes committed Mar 6, 2017
1 parent c35c51e commit 44ceb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commissaire/bus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __str__(self):
"""
Returns a string representation of the error.
"""
return '({0}) {1}'.format(self.code, self.message)
return '({}) {}'.format(self.code, self.message)


class StorageLookupError(RemoteProcedureCallError):
Expand Down

0 comments on commit 44ceb6f

Please sign in to comment.