Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pulp_container/app/modelresource.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ def set_up_queryset(self):
:return: Manifests specific to a specified repo-version.
"""
return ManifestListManifest.objects.filter(
manifest_list__pk__in=self.repo_version.content
manifest_list__pk__in=self.repo_version.content,
image_manifest__pk__in=self.repo_version.content
).order_by("id")

class Meta:
Expand Down
Loading