Commit e82fd635 authored by Stefan Bader's avatar Stefan Bader

UBUNTU: [Packaging] resync git-ubuntu-log

BugLink: http://bugs.launchpad.net/bugs/1786013Signed-off-by: default avatarStefan Bader <stefan.bader@canonical.com>
parent 27d7b23b
......@@ -17,9 +17,9 @@ entries = []
def add_entry(entry):
if entry and 'ignore' not in entry:
combo = []
for bug in entry.get('bugs', []):
for bug in set(entry.get('bugs', [])):
combo.append(bug)
for cve in entry.get('cves', []):
for cve in set(entry.get('cves', [])):
combo.append(cve)
combo = sorted(combo)
......
Markdown is supported
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