Python 3 doesn't have iteritems, use items (#4143)
This commit is contained in:
@@ -164,7 +164,7 @@ def determine_toolset(self, spec):
|
||||
|
||||
if spec.satisfies('@1.47:'):
|
||||
toolsets['icpc'] += '-linux'
|
||||
for cc, toolset in toolsets.iteritems():
|
||||
for cc, toolset in toolsets.items():
|
||||
if cc in self.compiler.cxx_names:
|
||||
return toolset
|
||||
|
||||
|
Reference in New Issue
Block a user