From c4bc11a236a84e2c610e2c4bef20041261d3ebc9 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Thu, 11 Aug 2011 12:02:20 -0400 Subject: [PATCH] For the Oxford vs. Cambridge thing, add periods We lost consistency due to the sorting out of the combined CUP & OUP MARC records in that the hard-coded publisher names did not end with a period. Signed-off-by: Dan Scott --- tools/ebooks/prep_ebook_records.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ebooks/prep_ebook_records.py b/tools/ebooks/prep_ebook_records.py index aba1d21ef5..ddb3ec16a0 100644 --- a/tools/ebooks/prep_ebook_records.py +++ b/tools/ebooks/prep_ebook_records.py @@ -476,9 +476,9 @@ def add_publisher(record, options): if raw_publisher: if 'Oxford' in raw_publisher or 'Clarendon' in raw_publisher: - publisher = 'Oxford University Press' + publisher = 'Oxford University Press.' elif 'Cambridge' in raw_publisher: - publisher = 'Cambridge University Press' + publisher = 'Cambridge University Press.' # Iterate through all of the existing 710 fields for sten in record.get_fields('710'): -- 2.11.0