From 45b99b45f5d502a452820b2b6a915ec902f9cae9 Mon Sep 17 00:00:00 2001 From: Christoph Gohlke Date: Wed, 13 Mar 2013 17:36:41 -0700 Subject: [PATCH] Check for webp extension during selftest --- selftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/selftest.py b/selftest.py index b0c7d7d30..568518144 100644 --- a/selftest.py +++ b/selftest.py @@ -189,6 +189,7 @@ if __name__ == "__main__": check_codec("G4 TIFF", "group4") check_module("FREETYPE2", "_imagingft") check_module("LITTLECMS", "_imagingcms") + check_module("WEBP", "_webp") print("-"*68) # use doctest to make sure the test program behaves as documented!