Added 'description' class attribute to every command class (to help the
[python/dscho.git] / Mac / Tools / macfreeze / macgen_info.py
blob9ec6aa03d49152fb9946e12d9900f9e8fc740f7a
1 """macgen_info - Generate informational output"""
3 def generate(output, module_dict):
4 for name in module_dict.keys():
5 print 'Include %-20s\t'%name,
6 module = module_dict[name]
7 print module.gettype(), '\t', `module`
8 return 0