One more BaseException in test_uploader.py

This commit is contained in:
Willem Melching
2020-03-30 12:30:21 -07:00
parent 13ec384ea0
commit 3dad97a211
+1 -1
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()