Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixing (part of?) #2261.
  • Loading branch information
felixfontein committed Mar 6, 2016
1 parent 4604211 commit 7ec9858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/command/import_wordpress.py
Expand Up @@ -382,7 +382,7 @@ def read_xml_file(cls, filename):
if b'<atom:link rel=' in line:
continue
xml.append(line)
return b'\n'.join(xml)
return b''.join(xml)

@classmethod
def get_channel_from_file(cls, filename):
Expand Down

0 comments on commit 7ec9858

Please sign in to comment.