diff options
author | Dylan Baker <[email protected]> | 2019-10-09 10:29:41 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-10-25 15:46:00 -0700 |
commit | df3d4ad82da41c47f6adb2ec4309e873a8f7fd33 (patch) | |
tree | ca3155ddd886436cb23881682a8ef6a43aa4e1f2 /bin | |
parent | 69f540c0172c0b2b43ba466adee7cfb8842250e2 (diff) |
bin/gen_release_notes.py: strip '#' from gitlab bugs
If they use the `Fixes: #1` form.
Fixes: 86079447da1e00d49db0cbff9a102eb4e71e8702
("scripts: Add a gen_release_notes.py script")
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Juan A. Suarez <[email protected]>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gen_release_notes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gen_release_notes.py b/bin/gen_release_notes.py index 17405530efb..b0d4c507252 100755 --- a/bin/gen_release_notes.py +++ b/bin/gen_release_notes.py @@ -149,7 +149,7 @@ async def gather_bugs(version: str) -> typing.List[str]: # This means we have a bug in the form "Closes: https://..." issues.append(os.path.basename(urllib.parse.urlparse(bug).path)) else: - issues.append(bug) + issues.append(bug.lstrip('#')) loop = asyncio.get_event_loop() async with aiohttp.ClientSession(loop=loop) as session: |