about summary refs log tree commit diff
path: root/gn3
diff options
context:
space:
mode:
Diffstat (limited to 'gn3')
-rw-r--r--gn3/file_utils.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/gn3/file_utils.py b/gn3/file_utils.py
index 5296613..73f6567 100644
--- a/gn3/file_utils.py
+++ b/gn3/file_utils.py
@@ -91,7 +91,8 @@ def cache_ipfs_file(ipfs_file: str,
     if not os.path.exists(file_loc):
         client = ipfshttpclient.connect(ipfs_addr)
         client.get(ipfs_file,
-                   target=pathlib.Path
-                   (os.path.join(cache_dir,
-                                 ipfs_file.split("ipfs/")[-1])).parent)
+                   target=str(
+                       pathlib.Path
+                       (os.path.join(cache_dir,
+                                     ipfs_file.split("ipfs/")[-1])).parent))
     return file_loc