Revision 2881
Added by Aaron Marcuse-Kubitza over 12 years ago
map | ||
---|---|---|
224 | 224 |
break # no more rows |
225 | 225 |
if i < start: continue # not at start row yet |
226 | 226 |
|
227 |
log('Processing input row #'+str(i), level=1.1) |
|
227 |
# Row # is interally 0-based, but 1-based to the user |
|
228 |
log('Processing input row #'+str(i+1), level=1.1) |
|
228 | 229 |
process_row(row, i) |
229 | 230 |
row_ready(i, row) |
230 | 231 |
row_ct = i-start+1 |
Also available in: Unified diff
bin/map: When logging the row # being processed, add 1 because row # is interally 0-based, but 1-based to the user