Skip to content

Commit 7ec9858

Browse files
committedMar 6, 2016
Fixing (part of?) #2261.
1 parent 4604211 commit 7ec9858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nikola/plugins/command/import_wordpress.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def read_xml_file(cls, filename):
382382
if b'<atom:link rel=' in line:
383383
continue
384384
xml.append(line)
385-
return b'\n'.join(xml)
385+
return b''.join(xml)
386386

387387
@classmethod
388388
def get_channel_from_file(cls, filename):

0 commit comments

Comments
 (0)
Please sign in to comment.