Skip to content

Commit

Permalink
fix exceptions desc
Browse files Browse the repository at this point in the history
  • Loading branch information
dmazzella committed Jan 16, 2019
1 parent 42f4755 commit 5b7aaa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cryptoauthlib/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, *args):
class CheckmacVerifyFailedError(CryptoError):
def __init__(self, *args):
super().__init__(
"response status byte indicates CheckMac failure "
"response status byte indicates CheckMac/Verify failure "
"(status byte = 0x01)",
*args
)
Expand Down Expand Up @@ -193,7 +193,7 @@ def __init__(self, *args):
class ExecutionError(CryptoError):
def __init__(self, *args):
super().__init__(
"chip was in a state where it could not execute the command, response"
"chip was in a state where it could not execute the command, response "
"status byte indicates command execution error (status byte = 0x0F)",
*args
)
Expand Down

0 comments on commit 5b7aaa1

Please sign in to comment.