From: Jack Jansen Date: Wed, 18 Jun 2003 14:17:34 +0000 (+0000) Subject: An indenting error in the code made it miss some suites that have an application X-Git-Tag: v2.3c1~383 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cf9b956f70fe7e8d14bc0a22e4451600cb40658;p=python 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 0667e9f2ee..d4140afbbd 100644 --- a/Lib/plat-mac/gensuitemodule.py +++ b/Lib/plat-mac/gensuitemodule.py @@ -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")