We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47f39d5 commit 78e4c36Copy full SHA for 78e4c36
tuf/client/updater.py
@@ -1933,8 +1933,8 @@ def _verify_merkle_path(self, metadata_role):
1933
1934
# Does the result match the merkle root?
1935
if node_hash != merkle_root:
1936
- raise tuf.exceptions.RepositoryError('The merkle root does not match ' +
1937
- 'the hash for ' + metadata_role)
+ raise tuf.exceptions.RepositoryError('The merkle root ' + merkle_root +
+ ' does not match the hash ' + node_hash + ' for ' + metadata_role)
1938
1939
# return the verified snapshot contents
1940
return contents
0 commit comments