Unverified Commit d1233402 authored by Enrico Zini's avatar Enrico Zini
Browse files

Skip debian-keyring entries also when querying

parent 300738a0
...@@ -85,7 +85,7 @@ class MineChangelogs(VisitorMixin, FormView): ...@@ -85,7 +85,7 @@ class MineChangelogs(VisitorMixin, FormView):
res["Content-Disposition"] = 'attachment; filename=changelogs.txt' res["Content-Disposition"] = 'attachment; filename=changelogs.txt'
return res return res
entries = list(entries) entries = [e for e in entries if not e.startswith("debian-keyring ")]
return self.render_to_response(self.get_context_data( return self.render_to_response(self.get_context_data(
form=form, form=form,
entries=entries, entries=entries,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment