mirror of https://github.com/google/oss-fuzz.git
Fix an Python 3 exception in build_project.py. (#4210)
This commit is contained in:
parent
4e2a7c07e5
commit
7bb74407dc
|
@ -98,7 +98,7 @@ def get_sanitizers(project_yaml):
|
|||
if isinstance(sanitizer, six.string_types):
|
||||
processed_sanitizers.append(sanitizer)
|
||||
elif isinstance(sanitizer, dict):
|
||||
for key in sanitizer.iterkeys():
|
||||
for key in sanitizer.keys():
|
||||
processed_sanitizers.append(key)
|
||||
|
||||
return processed_sanitizers
|
||||
|
|
Loading…
Reference in New Issue