From 6ddd10b98b259dac5ced451b12375049b94b6b56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Barroso=20Galindo?= Date: Wed, 12 Apr 2023 01:22:13 +0200 Subject: [PATCH] Fixing read external files --- .github/db_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/db_operator.py b/.github/db_operator.py index b894703af..c2076bd86 100755 --- a/.github/db_operator.py +++ b/.github/db_operator.py @@ -178,7 +178,7 @@ class ExternalFilesReader: print(f"Invalid MD5 hash in this row: {md5hash}, skipping it.", row) continue - result.append((path, {"url": url, "size": int(size), "hash": md5hash})) + result.append((Path(path), {"url": url, "size": int(size), "hash": md5hash})) return result