Skip to content

Commit

Permalink
g.citation.py: bugfix (#1269)
Browse files Browse the repository at this point in the history
Added missing comma between year and note in the BibTeX output.
  • Loading branch information
ecodiv authored Dec 22, 2024
1 parent 26b51f3 commit 551a084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/general/g.citation/g.citation.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ def print_bibtex(citation, output):
sep="",
file=output,
)
print(" year = {", citation["year"], "}", sep="", file=output)
print(" year = {", citation["year"], "},", sep="", file=output)
print(
" note = {Accessed: ",
citation["access"],
Expand Down

0 comments on commit 551a084

Please sign in to comment.