From ab82e663f819eac02e81eb936b2f82f7f03e80a6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 21 Aug 2014 21:21:51 +0530 Subject: [PATCH] Dont check .py files auto-generated from .ui files --- setup/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/check.py b/setup/check.py index fd65105025..7146a9a751 100644 --- a/setup/check.py +++ b/setup/check.py @@ -41,7 +41,7 @@ class Check(Command): continue if (f.endswith('.py') and f not in ( '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 if f.endswith('.coffee'): yield y, mtime