Skip to content

Commit

Permalink
Merge 4ec7143 into 2081f68
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Gillett committed May 28, 2019
2 parents 2081f68 + 4ec7143 commit 37a8dae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ubipop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,8 @@ def _create_srpms_output_set(self):
list(chain.from_iterable(self.repos.source_rpms.values())))

for pkg in blacklisted_srpms:
self.repos.source_rpms.pop(pkg.name, None)
if not pkg.is_modular:
self.repos.source_rpms.pop(pkg.name, None)

def _determine_pulp_actions(self, units, current, diff_f):
expected = list(chain.from_iterable(units.values()))
Expand Down

0 comments on commit 37a8dae

Please sign in to comment.