Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 '
|
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 |
|