summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-05-22 09:59:13 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-05-22 09:59:13 -0700
commit6929f3d33d9be46d3e33dbf237577fed13b70444 (patch)
tree3e3b064f789fe111ebe5c5e226399bc55340d68b
parent5927bee04145a8b398172a17582ed312206f7914 (diff)
downloadfatcat-6929f3d33d9be46d3e33dbf237577fed13b70444.tar.gz
fatcat-6929f3d33d9be46d3e33dbf237577fed13b70444.zip
stderr.write() needs newline
-rw-r--r--python/fatcat_tools/importers/jstor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/importers/jstor.py b/python/fatcat_tools/importers/jstor.py
index 3ffa12de..c8a7b20a 100644
--- a/python/fatcat_tools/importers/jstor.py
+++ b/python/fatcat_tools/importers/jstor.py
@@ -124,7 +124,7 @@ class JstorImporter(EntityImporter):
name = None
role = JSTOR_CONTRIB_MAP.get(c['contrib-type'])
if not role and c['contrib-type']:
- sys.stderr.write("NOT IN JSTOR_CONTRIB_MAP: {}".format(c['contrib-type']))
+ sys.stderr.write("NOT IN JSTOR_CONTRIB_MAP: {}\n".format(c['contrib-type']))
contribs.append(fatcat_client.ReleaseContrib(
role=JSTOR_CONTRIB_MAP.get(c['contrib-type']),
raw_name=clean(name),