Skip to content

Commit 7df35ed

Browse files
emyoulationNick-Hall
authored andcommitted
Update BiographyQuickview.py
use bullets instead of asterisks
1 parent 70ef81b commit 7df35ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BiographyQuickview/BiographyQuickview.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ def get_sources(database, person):
114114
title = source.title
115115
author = source.author
116116
if author:
117-
source_desc = '* {}, {} - {}'.format(author, title, page)
117+
source_desc = ' {}, {} - {}'.format(author, title, page)
118118
else:
119-
source_desc = '* {} - {}'.format(title, page)
119+
source_desc = ' {} - {}'.format(title, page)
120120

121121
if source_desc not in sources:
122122
sources.append(source_desc)

0 commit comments

Comments
 (0)