From 622306be962e61d7a00cd1d0a42fdef43f03f945 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 22 Aug 2013 18:03:02 +0530 Subject: [PATCH] ... --- src/calibre/ebooks/oeb/normalize_css.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/ebooks/oeb/normalize_css.py b/src/calibre/ebooks/oeb/normalize_css.py index cadb58b5cb..dea3826c87 100644 --- a/src/calibre/ebooks/oeb/normalize_css.py +++ b/src/calibre/ebooks/oeb/normalize_css.py @@ -164,7 +164,7 @@ for x in EDGES: name = 'border-' + x normalizers[name] = simple_normalizer(name, ('color', 'style', 'width'), check_inherit=False) -def test_normalization(): +def test_normalization(): # {{{ import unittest from cssutils import parseStyle @@ -264,6 +264,7 @@ def test_normalization(): tests = unittest.defaultTestLoader.loadTestsFromTestCase(TestNormalization) unittest.TextTestRunner(verbosity=4).run(tests) +# }}} if __name__ == '__main__': test_normalization()