aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools/transforms/csl.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_tools/transforms/csl.py')
-rw-r--r--python/fatcat_tools/transforms/csl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/transforms/csl.py b/python/fatcat_tools/transforms/csl.py
index 3509f350..7bc026ed 100644
--- a/python/fatcat_tools/transforms/csl.py
+++ b/python/fatcat_tools/transforms/csl.py
@@ -208,7 +208,7 @@ def citeproc_csl(csl_json, style, html=False):
bib.register(Citation([CitationItem(csl_json['id'])]))
lines = bib.bibliography()[0]
if style == "bibtex":
- out = "\n"
+ out = ""
for l in lines:
if l.startswith(" @"):
out += "@"