This commit is contained in:
Kovid Goyal 2019-10-29 09:34:28 +05:30
commit 02838a712c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -30,11 +30,9 @@ class Check(Command):
for x in os.walk(self.j(self.SRC, dname)): for x in os.walk(self.j(self.SRC, dname)):
for f in x[-1]: for f in x[-1]:
y = self.j(x[0], f) y = self.j(x[0], f)
if x[0].endswith('calibre/ebooks/markdown'):
continue
if (f.endswith('.py') and f not in ( if (f.endswith('.py') and f not in (
'feedparser.py', 'markdown.py', 'BeautifulSoup.py', 'dict_data.py', 'dict_data.py', 'unicodepoints.py', 'krcodepoints.py',
'unicodepoints.py', 'krcodepoints.py', 'jacodepoints.py', 'vncodepoints.py', 'zhcodepoints.py') and 'jacodepoints.py', 'vncodepoints.py', 'zhcodepoints.py') and
'prs500/driver.py' not in y) and not f.endswith('_ui.py'): 'prs500/driver.py' not in y) and not f.endswith('_ui.py'):
yield y yield y