From: Dylan Baker Date: Wed, 9 Oct 2019 17:29:41 +0000 (-0700) Subject: bin/gen_release_notes.py: strip '#' from gitlab bugs X-Git-Tag: android-x86-9.0-r1~663 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=df3d4ad82da41c47f6adb2ec4309e873a8f7fd33;p=android-x86%2Fexternal-mesa.git 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 Reviewed-by: Juan A. Suarez --- 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: