Skip to content

Commit c9ffa9f

Browse files
committed
2 parents baea66d + 96880f4 commit c9ffa9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

markdown_generator/pubsFromBib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def html_escape(text):
153153

154154
with open("../_publications/" + md_filename, 'w', encoding="utf-8") as f:
155155
f.write(md)
156-
print(f'SUCESSFULLY PARSED {bib_id}: \"', b["title"][:60],"..."*(len(b['title'])>60),"\"")
156+
print(f'SUCCESSFULLY PARSED {bib_id}: \"', b["title"][:60],"..."*(len(b['title'])>60),"\"")
157157
# field may not exist for a reference
158158
except KeyError as e:
159159
print(f'WARNING Missing Expected Field {e} from entry {bib_id}: \"', b["title"][:30],"..."*(len(b['title'])>30),"\"")

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)