Skip to content

Commit d50d38b

Browse files
authored
Append newline to the news entry
Fixes #256
1 parent 3c57dcf commit d50d38b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blurb_it/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ async def handle_add_blurb_post(request):
148148

149149
bpo_number = data.get("bpo_number", "").strip()
150150
section = data.get("section", "").strip()
151-
news_entry = data.get("news_entry", "").strip()
151+
news_entry = data.get("news_entry", "").strip() + "\n"
152152
path = await util.get_misc_news_filename(bpo_number, section, news_entry)
153153
pr_number = data.get("pr_number", "").strip()
154154

0 commit comments

Comments
 (0)