An indenting error in the code made it miss some suites that have an application

class.
This commit is contained in:
Jack Jansen 2003-06-18 14:17:34 +00:00
parent 9ff3f03c3e
commit 2cf9b956f7
1 changed files with 2 additions and 2 deletions

View 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")