mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-20 06:32:58 +02:00
Exclude the markdown code from check
This commit is contained in:
parent
f6a7ef58f7
commit
dc80d92b1d
1 changed files with 2 additions and 0 deletions
|
|
@ -34,6 +34,8 @@ def get_files(self, cache):
|
|||
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue