An indenting error in the code made it miss some suites that have an application
class.
diff --git a/Lib/plat-mac/gensuitemodule.py b/Lib/plat-mac/gensuitemodule.py
index 0667e9f..d4140af 100644
--- a/Lib/plat-mac/gensuitemodule.py
+++ b/Lib/plat-mac/gensuitemodule.py
@@ -530,8 +530,8 @@
for codenamemapper in allprecompinfo:
for k, v in codenamemapper.getall('class'):
fp.write(" %s : %s,\n" % (`k`, v))
- if k == 'capp':
- application_class = v
+ if k == 'capp':
+ application_class = v
fp.write("}\n")