From f0b7df4961aa60ca146f8d283ffb842f481d8449 Mon Sep 17 00:00:00 2001 From: Adam Kariv Date: Sat, 8 Jun 2024 19:26:10 +0300 Subject: [PATCH] Typo --- odds/common/store/s3/s3_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odds/common/store/s3/s3_store.py b/odds/common/store/s3/s3_store.py index ffe4308..b70f47c 100644 --- a/odds/common/store/s3/s3_store.py +++ b/odds/common/store/s3/s3_store.py @@ -102,7 +102,7 @@ async def getDB(self, resource: Resource, dataset: Dataset) -> str: if not outfile.exists(): await bucket.download_file(key, str(outfile)) return str(outfile) - except Exception, e: + except Exception as e: print('DB NOT FOUND', key, repr(e)) pass return None