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
Forward-port bca6b38 from 2.13 branch.
  • Loading branch information
tseaver committed Feb 29, 2016
1 parent 2d53353 commit 3befdaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App/ApplicationManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,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 3befdaf

Please sign in to comment.