Pclanglais commited on
Commit
5caf956
·
verified ·
1 Parent(s): 45cbfeb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -84,8 +84,9 @@ def create_bibtex_entry(data):
84
  if year and 'year' not in data:
85
  data['year'] = year
86
 
 
87
  author_words = data.get('author', '').split()
88
- first_author = author_words[0] if author_words else 'Unknown'
89
  bibtex_id = f"{first_author}{year}" if year else first_author
90
  bibtex_id = remove_punctuation(bibtex_id.lower())
91
 
 
84
  if year and 'year' not in data:
85
  data['year'] = year
86
 
87
+ year = data['year']
88
  author_words = data.get('author', '').split()
89
+ first_author = author_words[0] if author_words else 'unknown'
90
  bibtex_id = f"{first_author}{year}" if year else first_author
91
  bibtex_id = remove_punctuation(bibtex_id.lower())
92