Changes in benchmark/process-mutilate.py [e9a7bdb3:bd1d279]
- File:
-
- 1 edited
-
benchmark/process-mutilate.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/process-mutilate.py
re9a7bdb3 rbd1d279 109 109 # checking if it is a file 110 110 if os.path.isfile(f): 111 match = re.search("({})\.([0-9]+)\.([0-9]+)\.([0-9]+)".format(names_re), filename) 112 print(filename, match) 111 match = re.search("({})\.([0-9]+)\.([0-9]+)".format(names_re), filename) 113 112 try: 114 series = "{}-{}%".format(match[1], match[3])113 series = match[1] 115 114 rate = match[2] 116 rep = match[ 4]115 rep = match[3] 117 116 except: 118 117 continue
Note:
See TracChangeset
for help on using the changeset viewer.