diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-12-12 12:23:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-12 12:23:07 +0100 |
| commit | 2760f5d0b401670e6ec976ac90ff345234fdfea3 (patch) | |
| tree | 5b7d81791caac51d1c4d1014b43d58472cf84768 /methods.py | |
| parent | 8c045fc9ff8101a3581045ed4baa02565850aebd (diff) | |
| parent | 8ef5e3201c2dfbcdd80190691427300dc35428be (diff) | |
| download | redot-engine-2760f5d0b401670e6ec976ac90ff345234fdfea3.tar.gz | |
Merge pull request #44315 from madmiraal/fix-handles-baseexception
Don't handle BaseException in build scripts
Diffstat (limited to 'methods.py')
| -rw-r--r-- | methods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods.py b/methods.py index f7134b472b..15eb82ae74 100644 --- a/methods.py +++ b/methods.py @@ -843,7 +843,7 @@ def show_progress(env): try: with open(node_count_fname) as f: node_count_max = int(f.readline()) - except: + except Exception: pass cache_directory = os.environ.get("SCONS_CACHE") |
