From 92884b806884c51ed7abc96bb538f38c9f6fc0cc Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Thu, 11 Aug 2011 12:24:50 -0400 Subject: [PATCH] And append the ' ; ' to 506 $b as well In our refactoring, we messed up the 506 $b. Sigh. Signed-off-by: Dan Scott --- tools/ebooks/prep_ebook_records.py | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.11.0