From dc80d92b1d28ecea3455663bee3af0bf1c426a7d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 25 Sep 2013 18:13:00 +0530 Subject: [PATCH] Exclude the markdown code from check --- setup/check.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/check.py b/setup/check.py index 5bf636467d..fd65105025 100644 --- a/setup/check.py +++ b/setup/check.py @@ -34,6 +34,8 @@ class Check(Command): for x in os.walk(self.j(self.SRC, 'calibre')): for f in x[-1]: y = self.j(x[0], f) + if x[0].endswith('calibre/ebooks/markdown'): + continue mtime = os.stat(y).st_mtime if cache.get(y, 0) == mtime: continue