diff --git a/pylib/gyp/generator/ztest_xcode.py b/pylib/gyp/generator/test_xcode.py similarity index 100% rename from pylib/gyp/generator/ztest_xcode.py rename to pylib/gyp/generator/test_xcode.py diff --git a/pylib/gyp/xcodeproj_file.py b/pylib/gyp/xcodeproj_file.py index 4f92cd09..cb4d0d2d 100644 --- a/pylib/gyp/xcodeproj_file.py +++ b/pylib/gyp/xcodeproj_file.py @@ -781,7 +781,7 @@ def UpdateProperties(self, properties, do_copy=False): # Make sure the property conforms to the schema. (is_list, property_type, is_strong) = self._schema[property][0:3] if is_list: - if not isinstance(value.__class__, list): + if not isinstance(value, list): raise TypeError( property + " of "