And append the ' ; ' to 506 $b as well
authorDan Scott <dan@coffeecode.net>
Thu, 11 Aug 2011 16:24:50 +0000 (12:24 -0400)
committerDan Scott <dscott@laurentian.ca>
Tue, 7 May 2013 18:37:19 +0000 (14:37 -0400)
In our refactoring, we messed up the 506 $b. Sigh.

Signed-off-by: Dan Scott <dscott@laurentian.ca>
tools/ebooks/prep_ebook_records.py

index ddb3ec1..745ed58 100644 (file)
@@ -661,6 +661,8 @@ def append_space_semi_space(note):
         note += ' '
     elif note[-1] == ' ':
         note += '; '
+    else:
+        note += ' ; '
 
     return note