Fix typos in exception.py

There were a few typos in the descriptions of the exceptions
in exception.py

These have been fixed.

Change-Id: I21310f1f296406b93bf599b92505ad55aae528a1
Closes-Bug: #1615661
This commit is contained in:
Yvonne Stachowski 2016-08-22 10:13:44 -04:00
parent 62398ed4a3
commit c27ce0b878
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
class NoUniqueMatch(RuntimeError):
"""There was more that one on no extensions matching the query."""
"""There was more than one extension, or none, that matched the query."""
class NoMatches(NoUniqueMatch):
"""There were no extensions with the diver name found."""
"""There were no extensions with the driver name found."""
class MultipleMatches(NoUniqueMatch):