Prevent file listing from showing up twice.

This commit is contained in:
Dan Helfman 2023-06-19 22:33:29 -07:00
parent 6f9ee9fa09
commit 9315717d03
1 changed files with 6 additions and 5 deletions

View File

@ -349,12 +349,13 @@ def upgrade_check_times(location_config, borg_repository_id):
temporary_path = f'{old_path}.temp'
logger.debug(f"#713: temporary_path = '{temporary_path}'")
logger.debug(f"\n#713: file listing:")
logger.debug(
execute_command_and_capture_output(
['ls', '-alR', f'{os.path.dirname(os.path.dirname(old_path))}'], capture_stderr=True, shell=True
if check_type == 'archives':
logger.debug(f"\n#713: file listing:")
logger.debug(
execute_command_and_capture_output(
['ls', '-alR', f'{os.path.dirname(os.path.dirname(old_path))}'], capture_stderr=True, shell=True
)
)
)
logger.debug(f"#713: os.path.isfile(old_path) = {os.path.isfile(old_path)}")
logger.debug(f"#713: os.path.isfile(temporary_path) = {os.path.isfile(temporary_path)}")