Skip to content

Commit 4a2263f

Browse files
committedSep 3, 2018
Add newlines between bundle items
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 05f6d5a commit 4a2263f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎nikola/plugins/task/bundles.py

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def build_bundle(output, inputs):
6767
for i in inputs:
6868
with open(i, 'rb') as in_fh:
6969
shutil.copyfileobj(in_fh, out_fh)
70+
out_fh.write(b'\n')
7071

7172
yield self.group_task()
7273

0 commit comments

Comments
 (0)
Please sign in to comment.