Commit 6fb3256d authored by Guido van Rossum's avatar Guido van Rossum

Fix a typo in an exception stringification.

parent b3b2584c
...@@ -45,7 +45,7 @@ class BrokenMethodImplementation(Exception): ...@@ -45,7 +45,7 @@ class BrokenMethodImplementation(Exception):
self.mess=mess self.mess=mess
def __str__(self): def __str__(self):
return """The implementation of %(method)s violates it's contract return """The implementation of %(method)s violates its contract
because %(mess)s. because %(mess)s.
""" % self.__dict__ """ % self.__dict__
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment