96,98c96,98
< raise AttributeError, \
< 'The benchmark %s does not have the %s input set' % \
< (self.name, input_set)
---
> raise AttributeError(
> 'The benchmark %s does not have the %s input set' % \
> (self.name, input_set))
102c102
< raise AttributeError, '%s not found' % executable
---
> raise AttributeError('%s not found' % executable)
116c116
< raise AttributeError, '%s not found' % inputs_dir
---
> raise AttributeError('%s not found' % inputs_dir)
673c673
< raise AttributeError, "unknown ISA %s" % isa
---
> raise AttributeError("unknown ISA %s" % isa)