Commit b27cbb5e authored by Tarek Ziade's avatar Tarek Ziade

workaround a cache issue refers #258

--HG--
branch : distribute
extra : rebase_source : c8897b0541098e34f4347621f54ed79ef32be229
parent bcfc28fc
......@@ -7,6 +7,7 @@ CHANGES
------
* Issue #249: Added options to exclude 2to3 fixers
* Issue #258: Workaround a cache issue
------
0.6.23
......
......@@ -508,6 +508,10 @@ class WorkingSet(object):
"""
seen = {}
for item in self.entries:
if item not in self.entry_keys:
# workaround a cache issue
continue
for key in self.entry_keys[item]:
if key not in seen:
seen[key]=1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment