Skip to content

Commit

Permalink
Merge pull request #40 from pfernique/master
Browse files Browse the repository at this point in the history
Improve health
  • Loading branch information
pfernique committed Aug 19, 2016
2 parents d227247 + 603eb0b commit f77733a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py/autowig/asg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1881,7 +1881,7 @@ def includes(self, *nodes):
_headers = {header.globalname for header in headers if header.depth == 0}
for header in [header for header in headers if header.depth > 0]:
include = header.include
while include inot s None and include.globalname not in _headers:
while include is not None and include.globalname not in _headers:
include = include.include
if include is None:
_headers.add(header.globalname)
Expand Down

0 comments on commit f77733a

Please sign in to comment.