From: Dan Scott Date: Thu, 11 Aug 2011 16:02:20 +0000 (-0400) Subject: For the Oxford vs. Cambridge thing, add periods X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c4bc11a236a84e2c610e2c4bef20041261d3ebc9;p=contrib%2FConifer.git 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 --- 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'):