Skip to content

Commit

Permalink
Extend hardening against 'six' renames to include vendored version.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Feb 29, 2016
1 parent baaa240 commit bca6b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App/ApplicationManager.py
Expand Up @@ -165,7 +165,7 @@ def refcount(self, n=None, t=(type(Implicit), )):
for m in sys.modules.values():
if m is None:
continue
if m.__name__.startswith('six'):
if 'six.' in m.__name__:
continue
for sym in dir(m):
ob = getattr(m, sym)
Expand Down

0 comments on commit bca6b38

Please sign in to comment.