summaryrefslogtreecommitdiff
path: root/cli/app
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-07 22:40:19 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-07 22:40:19 +0100
commitc00bc938019f660b72fff7f9972f93eb7462d8cf (patch)
tree7add9fbacc119cde81ae3d3656cc688c122a8641 /cli/app
parent36eb7e4de788b8cedbe43029f3c47c3899075dfe (diff)
getting latent search updates working...
Diffstat (limited to 'cli/app')
-rw-r--r--cli/app/utils/cortex_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/utils/cortex_utils.py b/cli/app/utils/cortex_utils.py
index e4594ff..01b4bc9 100644
--- a/cli/app/utils/cortex_utils.py
+++ b/cli/app/utils/cortex_utils.py
@@ -22,8 +22,8 @@ def download_cortex_files(opt_folder_id):
if row['generated'] == 0 and row['processed'] != 1:
fn, ext = os.path.splitext(row['name'])
fp_out_image = join(fp_out_dir, row['name'])
+ row['path'] = fp_out_image
if not os.path.exists(fp_out_image):
- row['path'] = fp_out_image
fetch_file(row['url'], fp_out_image)
return rows