Skip to content

Commit

Permalink
Update repos/system_upgrade/common/actors/peseventsscanner/libraries/…
Browse files Browse the repository at this point in the history
…pes_events_scanner.py

Co-authored-by: David Kubek <[email protected]>
  • Loading branch information
MichalHe and dkubek authored Apr 9, 2024
1 parent 3e193f2 commit e6fa01c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def compute_pkg_changes_between_consequent_releases(source_installed_pkgs,

# In pkgs are present, event can be applied
# Note: We do a .difference(event.out_packages) followed by an .union(event.out_packages) to overwrite
# # repositories of the packages (Package has overwritten __hash__ and __eq__)
# # repositories of the packages (Package has overwritten __hash__ and __eq__, ignoring the repository field)
target_pkgs = target_pkgs.difference(event.in_pkgs)
target_pkgs = target_pkgs.difference(event.out_pkgs)
target_pkgs = target_pkgs.union(event.out_pkgs)
Expand Down

0 comments on commit e6fa01c

Please sign in to comment.