From 0485eeeb34a0e8d3223316d463f7bbc3f3ec461e Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sun, 31 Jan 2021 10:50:20 +0000 Subject: [PATCH] Removed page break at the end for printme.html --- scripts/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/views.py b/scripts/views.py index b5e6f28..2beab93 100755 --- a/scripts/views.py +++ b/scripts/views.py @@ -81,7 +81,8 @@ def bom_to_assemblies(bom_dir, bounds_map): def eop(print_mode, doc_file, last = False, first = False): if print_mode: - print('\n
', file = doc_file) + if not last: + print('\n
', file = doc_file) else: if not first: print('[Top](#TOP)', file = doc_file)