Skip to content

Commit

Permalink
adapt to changes in tuf.ngclient.Updater._trusted_set
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisvang committed Apr 19, 2024
1 parent 2fdc640 commit 96e0b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tufup/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def trusted_target_metas(self) -> list:
if self._trusted_set.targets:
_trusted_target_metas = [
TargetMeta(target_path=key, custom=target.custom)
for key, target in self._trusted_set.targets.signed.targets.items()
for key, target in self._trusted_set.targets.targets.items()
]
logger.debug(f'{len(_trusted_target_metas)} TargetMeta objects created')
else:
Expand Down

0 comments on commit 96e0b0d

Please sign in to comment.