mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-16 01:46:15 +01:00
Dont check .py files auto-generated from .ui files
This commit is contained in:
parent
15fb2a14f0
commit
ab82e663f8
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ def get_files(self, cache):
|
|||
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue