From eb4ef74f71800cd826bacd37150ee7976c1cda42 Mon Sep 17 00:00:00 2001 From: Stuart Axon Date: Thu, 12 Oct 2017 01:45:00 +0100 Subject: [PATCH] Update test_importer.py Flake8 was warning on line length --- pelican/tests/test_importer.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pelican/tests/test_importer.py b/pelican/tests/test_importer.py index fe9b715a..8cafecc5 100644 --- a/pelican/tests/test_importer.py +++ b/pelican/tests/test_importer.py @@ -234,7 +234,11 @@ class TestWordpressXmlImporter(unittest.TestCase): with open(WORDPRESS_DECODED_CONTENT_SAMPLE, 'r') as decoded_file: decoded_content = decoded_file.read() self.assertEqual( - decode_wp_content(encoded_content, attached_files=None, br=False), + decode_wp_content( + encoded_content, + attached_files=None, + br=False + ), decoded_content) def test_preserve_verbatim_formatting(self):