From 551a0840e2f018d06001e27b7fea7cde184211dc Mon Sep 17 00:00:00 2001 From: Paulo van Breugel Date: Sun, 22 Dec 2024 18:59:06 +0100 Subject: [PATCH] g.citation.py: bugfix (#1269) Added missing comma between year and note in the BibTeX output. --- src/general/g.citation/g.citation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/general/g.citation/g.citation.py b/src/general/g.citation/g.citation.py index 711622c901..9d0be6e904 100755 --- a/src/general/g.citation/g.citation.py +++ b/src/general/g.citation/g.citation.py @@ -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"],