Skip to content

Commit

Permalink
LGTM - Except block directly handles BaseException. (#1622)
Browse files Browse the repository at this point in the history
  • Loading branch information
vivien-apple authored Jul 20, 2020
1 parent 3560ded commit cc1a054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/helpers/bloat_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def writeFileBloatReport(f, baselineName, buildName):
section, vm, f = row
if (section in SECTIONS_TO_WATCH) or (vm not in ['0', 'vmsize']):
result.sectionChanges.append(SectionChange(section, int(f), int(vm)))
except:
except Exception:
pass

return result
Expand Down

0 comments on commit cc1a054

Please sign in to comment.