Skip to content

Commit 82c33b2

Browse files
committed
Support product names starting with colon
1 parent 771ef45 commit 82c33b2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/make_release_notes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,8 @@ def main():
244244
products = releasing_products(args.releasecfg)
245245

246246
for product in products:
247+
if product.startswith(':'):
248+
product = product.removeprefix(':')
247249
if not product in PRODUCTS:
248250
print(f'Ignored: {product}')
249251
continue

0 commit comments

Comments
 (0)