diff options
author | John Sonnenschein <John.Sonnenschein@Sun.COM> | 2008-10-01 00:06:47 -0700 |
---|---|---|
committer | John Sonnenschein <John.Sonnenschein@Sun.COM> | 2008-10-01 00:06:47 -0700 |
commit | 3b4580fc510bca1ead04c0d8600e2dc7f3e5583d (patch) | |
tree | eab72809a8d21228e21bfd8af7df3264d618ea57 /usr/src/tools/onbld/Checks | |
parent | 815409466dd2a69a595e7520cc86142882da957c (diff) | |
download | illumos-joyent-3b4580fc510bca1ead04c0d8600e2dc7f3e5583d.tar.gz |
6752197 rti check logic could be enhanced to deal with multiple returns (fix build)
6754343 DbLookups needs to track new home for webrticli
Diffstat (limited to 'usr/src/tools/onbld/Checks')
-rw-r--r-- | usr/src/tools/onbld/Checks/Rti.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/tools/onbld/Checks/Rti.py b/usr/src/tools/onbld/Checks/Rti.py index 24e9a3633d..4f49345d5b 100644 --- a/usr/src/tools/onbld/Checks/Rti.py +++ b/usr/src/tools/onbld/Checks/Rti.py @@ -126,7 +126,7 @@ def rti(bugids, gatePath=None, consolidation=None, if not gateType in rtiType: message = "Error: for bug " + cr for each in rtiNumber: - message += " the RTI " each + " is of " + message += " the RTI " + each + " is of " message += rtiType[rtiNumber.index(each)] + " type " message += "but the parent gate " + gateName + " is a " message += gateType + " gate.\n" + "A " + gateType |