From: dbs Date: Thu, 2 Dec 2010 21:35:46 +0000 (+0000) Subject: Just use the literal value of the supplied publisher X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6e919d178c86fc97a56e929839517a6ab7c9cc7e;p=contrib%2FConifer.git Just use the literal value of the supplied publisher Example that I was given had "(Firm)" at the end of the publisher name, but apparently that was a one-off and not intended to be applied to all publishers. Okay. git-svn-id: svn://svn.open-ils.org/ILS-Contrib/conifer/branches/rel_1_6_1@1096 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- diff --git a/tools/ebooks/prep_ebook_records.py b/tools/ebooks/prep_ebook_records.py index b95fb746a3..de3c2f5513 100644 --- a/tools/ebooks/prep_ebook_records.py +++ b/tools/ebooks/prep_ebook_records.py @@ -243,7 +243,7 @@ def process_records(options): seven_ten = pymarc.Field(tag = '710', indicators = ['2', ' '], subfields = [ - 'a', options['publisher'] + ' (Firm)', + 'a', options['publisher'], '4', 'pbl' ] )