Bug in pixb.binding.generate.Generator.__init__
Brought to you by:
pabigot
See lines 1983 and 1984:
self.__writeForCustomization = kw.get('write_for_customization', False)
self.__writeForCustomization = kw.get('allow_builtin_generation', False)
As you may notice, the second line (1984) is buggy: should be
self.__allowBuiltinGeneration = kw.get('allow_builtin_generation', False)
Thank you for future fix.
Thanks for reporting the issue.
commit 762618788503b6a145ab08586942a30aaa673479
Author: Peter A. Bigot <pabigot@‌>
Date: Sat Feb 25 09:27:49 2012 -0600