Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/process-mutilate.py

    re9a7bdb3 rbd1d279  
    109109        # checking if it is a file
    110110        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)
    113112                try:
    114                         series = "{}-{}%".format(match[1], match[3])
     113                        series = match[1]
    115114                        rate = match[2]
    116                         rep = match[4]
     115                        rep = match[3]
    117116                except:
    118117                        continue
Note: See TracChangeset for help on using the changeset viewer.