We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d86838 commit 9c25444Copy full SHA for 9c25444
idc_index/index.py
@@ -315,7 +315,9 @@ def _check_create_directory(download_dir):
315
download_dir = Path(download_dir)
316
download_dir.mkdir(parents=True, exist_ok=True)
317
318
- return str(download_dir.resolve())
+ download_dir = str(download_dir.resolve()).replace("'","''")
319
+
320
+ return download_dir
321
322
def _check_disk_size_and_warn(self, download_dir, disk_size_needed):
323
disk_free_space_MB = psutil.disk_usage(download_dir).free / (1000 * 1000)
0 commit comments