- Timestamp:
- Sep 25, 2008 10:53:22 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/sample/shellcommon.py
r12689 r12717 86 86 rc = progress.resultCode 87 87 print "Completed:", completed, "rc:",rc 88 if rc== 0:88 if int(rc) == 0: 89 89 vb.performanceCollector.setupMetrics(['*'], [mach], 10, 15) 90 90 session.close() … … 105 105 valsStr = '[ ' 106 106 for j in range(0, lens[i]): 107 valsStr += str(vals[i dxs[i]])+' '107 valsStr += str(vals[int(idxs[i])+j])+' ' 108 108 valsStr += ']' 109 109 print names[i],valsStr … … 294 294 valsStr = '[ ' 295 295 for j in range(0, lens[i]): 296 valsStr += str(vals[i dxs[i]])+' '296 valsStr += str(vals[int(idxs[i])+j])+' ' 297 297 valsStr += ']' 298 298 print names[i],valsStr
Note:
See TracChangeset
for help on using the changeset viewer.