[open-ils-commits] r1096 - conifer/branches/rel_1_6_1/tools/ebooks (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Dec 2 16:35:51 EST 2010
Author: dbs
Date: 2010-12-02 16:35:46 -0500 (Thu, 02 Dec 2010)
New Revision: 1096
Modified:
conifer/branches/rel_1_6_1/tools/ebooks/prep_ebook_records.py
Log:
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.
Modified: conifer/branches/rel_1_6_1/tools/ebooks/prep_ebook_records.py
===================================================================
--- conifer/branches/rel_1_6_1/tools/ebooks/prep_ebook_records.py 2010-12-02 15:57:35 UTC (rev 1095)
+++ conifer/branches/rel_1_6_1/tools/ebooks/prep_ebook_records.py 2010-12-02 21:35:46 UTC (rev 1096)
@@ -243,7 +243,7 @@
seven_ten = pymarc.Field(tag = '710',
indicators = ['2', ' '],
subfields = [
- 'a', options['publisher'] + ' (Firm)',
+ 'a', options['publisher'],
'4', 'pbl'
]
)
More information about the open-ils-commits
mailing list