diff options
Diffstat (limited to 'scripts/test/support.py')
-rwxr-xr-x | scripts/test/support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/support.py b/scripts/test/support.py index 7b10f229c..9d70abb7f 100755 --- a/scripts/test/support.py +++ b/scripts/test/support.py @@ -26,7 +26,7 @@ def _open_archive(tarfile, tmp_dir): with tempfile.TemporaryFile(mode='w+') as f: try: subprocess.check_call(['tar', '-xvf', tarfile], cwd=tmp_dir, stdout=f) - except: + except Exception: f.seek(0) sys.stderr.write(f.read()) raise |