Skip to content

Commit

Permalink
fix bug #103
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Oct 12, 2018
1 parent 334b1c2 commit bcf6bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/fused/iutest_pp_strip.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ def __reduction(self, line):
continue
line = line.replace(k, v)
line = re.sub(r'(?<![\w\d_])NULL(?![\w\d_])', '0', line)
line = re.sub('\s+', ' ', line)
# line = re.sub('\s+', ' ', line)
line = re.sub('\s$', '', line)
line = line.strip()
return line
Expand Down

0 comments on commit bcf6bf1

Please sign in to comment.