BobTheBuilder

Results 1 comments of BobTheBuilder

I'm getting the error `AttributeError: 'list' object has no attribute 'read'` with pretty much the same code as the one above. ``` data = TAG_Compound(name="data") data.tags.append(TAG_Int_Array('colors', [1,2,3])) mapFile.tags.append(data) ``` ```...