One more BaseException in test_uploader.py

pull/1298/head
Willem Melching 2020-03-30 12:30:21 -07:00
parent 13ec384ea0
commit 3dad97a211
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class TestLogHandler(logging.Handler):
j = json.loads(record.message)
if j["event"] == "upload_success":
self.upload_order.append(j["key"])
except BaseException:
except Exception:
pass
log_handler = TestLogHandler()