Skip to content

Commit 87ab447

Browse files
authored
Update talks.py
Corrected the date conditional in the talks.py generator
1 parent 838c072 commit 87ab447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

markdown_generator/talks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def html_escape(text):
8383
if len(str(item.venue)) > 3:
8484
md += 'venue: "' + item.venue + '"\n'
8585

86-
if len(str(item.location)) > 3:
86+
if len(str(item.date)) > 3:
8787
md += "date: " + str(item.date) + "\n"
8888

8989
if len(str(item.location)) > 3:

0 commit comments

Comments
 (0)