Changeset 27787
- Timestamp:
- 06/12/23 11:52:10 (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/GetIds.py
r25956 r27787 54 54 # 55 55 # NOTE: ID inclusion/exclusion lists will always hit this condition 56 # beca sue of the way their respective arguments are gathered at the56 # because of the way their respective arguments are gathered at the 57 57 # end of __main__ in the call to function runme. 58 58 if type(ids_names) == list and len(ids_names) == 2: … … 63 63 if ':' in i: 64 64 i_range = i.split(':') 65 for j in range(int(i_range[0]), int(i_range[1]) ):65 for j in range(int(i_range[0]), int(i_range[1]) + 1): 66 66 ids_expanded.append(j) 67 67 else:
Note:
See TracChangeset
for help on using the changeset viewer.