]> granicus.if.org Git - python/commitdiff
An indenting error in the code made it miss some suites that have an application
authorJack Jansen <jack.jansen@cwi.nl>
Wed, 18 Jun 2003 14:17:34 +0000 (14:17 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Wed, 18 Jun 2003 14:17:34 +0000 (14:17 +0000)
class.

Lib/plat-mac/gensuitemodule.py

index 0667e9f2eea9c760696b2869bd8ac19cfc4fd084..d4140afbbdd0c3d989517a91f2f00e194b1ff8c9 100644 (file)
@@ -530,8 +530,8 @@ def compileaete(aete, resinfo, fname, output=None, basepkgname=None,
         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")