summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-10-09 10:29:41 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-10-25 15:46:00 -0700
commitdf3d4ad82da41c47f6adb2ec4309e873a8f7fd33 (patch)
treeca3155ddd886436cb23881682a8ef6a43aa4e1f2 /bin
parent69f540c0172c0b2b43ba466adee7cfb8842250e2 (diff)
downloadmesa-df3d4ad82da41c47f6adb2ec4309e873a8f7fd33.tar.gz
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 <eric@engestrom.ch> Reviewed-by: Juan A. Suarez <jasuarez@igalia.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gen_release_notes.py2
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: