Dont check .py files auto-generated from .ui files

This commit is contained in:
Kovid Goyal 2014-08-21 21:21:51 +05:30
parent 15fb2a14f0
commit ab82e663f8

View File

@ -41,7 +41,7 @@ class Check(Command):
continue continue
if (f.endswith('.py') and f not in ( if (f.endswith('.py') and f not in (
'feedparser.py', 'markdown.py') and 'feedparser.py', 'markdown.py') and
'prs500/driver.py' not in y): 'prs500/driver.py' not in y) and not f.endswith('_ui.py'):
yield y, mtime yield y, mtime
if f.endswith('.coffee'): if f.endswith('.coffee'):
yield y, mtime yield y, mtime