From e6627c48b7fa2991181a2aa4fbe30545687d080c Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Wed, 9 Aug 2023 18:18:43 -0700 Subject: [PATCH] hotfix: add print statement for moving --- pv2/importer/operation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pv2/importer/operation.py b/pv2/importer/operation.py index 5d3649d..2634449 100644 --- a/pv2/importer/operation.py +++ b/pv2/importer/operation.py @@ -187,6 +187,7 @@ class Import: print(f'{dest_path} already exists, skipping') os.remove(source_path) else: + print(f'Moving {source_path} to {dest_path}') shutil.move(src=source_path, dst=dest_path) if os.path.exists('/usr/sbin/restorecon'): processor.run_proc_foreground_shell(f'/usr/sbin/restorecon {dest_path}')