Skip to content

Commit afdbf8c

Browse files
committed
Update error message
Signed-off-by: marinamoore <[email protected]>
1 parent bc8a95f commit afdbf8c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tuf/client/updater.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1932,8 +1932,8 @@ def _verify_merkle_path(self, metadata_role):
19321932

19331933
# Does the result match the merkle root?
19341934
if node_hash != merkle_root:
1935-
raise tuf.exceptions.RepositoryError('The merkle root does not match ' +
1936-
'the hash for ' + metadata_role)
1935+
raise tuf.exceptions.RepositoryError('The merkle root ' + merkle_root +
1936+
' does not match the hash ' + node_hash + ' for ' + metadata_role)
19371937

19381938
# return the verified snapshot contents
19391939
return contents

0 commit comments

Comments
 (0)