Skip to content

Commit 5f8a4fc

Browse files
authored
🔧 MAINT: hyphen instead of asterisk (#44)
1 parent e026968 commit 5f8a4fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github_activity/github_activity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def generate_activity_md(
379379
ititle = irowdata["title"]
380380
if strip_brackets and ititle.strip().startswith("[") and "]" in ititle:
381381
ititle = ititle.split("]", 1)[-1].strip()
382-
this_md = f"* {ititle} [#{irowdata['number']}]({irowdata['url']}) ([@{author}](https://github.com/{author}))"
382+
this_md = f"- {ititle} [#{irowdata['number']}]({irowdata['url']}) ([@{author}](https://github.com/{author}))"
383383
items["md"].append(this_md)
384384

385385
# Get functional GitHub references: any git reference or master@{YY-mm-dd}

0 commit comments

Comments
 (0)