From: Dan Scott Date: Thu, 11 Aug 2011 16:24:50 +0000 (-0400) Subject: And append the ' ; ' to 506 $b as well X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a4f48009f21974a7849ba533ccee1b994f7c549c;p=contrib%2FConifer.git And append the ' ; ' to 506 $b as well In our refactoring, we messed up the 506 $b. Sigh. Signed-off-by: Dan Scott --- diff --git a/tools/ebooks/prep_ebook_records.py b/tools/ebooks/prep_ebook_records.py index ddb3ec16a0..745ed589f5 100644 --- a/tools/ebooks/prep_ebook_records.py +++ b/tools/ebooks/prep_ebook_records.py @@ -661,6 +661,8 @@ def append_space_semi_space(note): note += ' ' elif note[-1] == ' ': note += '; ' + else: + note += ' ; ' return note