Skip to content

Commit

Permalink
Less "Skipping" debug spew
Browse files Browse the repository at this point in the history
  • Loading branch information
msullivan committed Feb 27, 2018
1 parent 064c8d3 commit 7e22778
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mypy/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,8 @@ def __init__(self,
self.ignore_all = True
else:
# In 'error' mode, produce special error messages.
manager.log("Skipping %s (%s)" % (path, id))
if id not in manager.missing_modules:
manager.log("Skipping %s (%s)" % (path, id))
if follow_imports == 'error':
if ancestor_for:
self.skipping_ancestor(id, path, ancestor_for)
Expand Down

0 comments on commit 7e22778

Please sign in to comment.