Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche committed Oct 18, 2023
1 parent e071cd4 commit 5d7dcd8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion fixbackup/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def upload_backups(args: Namespace, backup_directory: Path, backup_files: List[P
log.info(f"Syncing backups to S3 bucket {bucket_name}/{prefix}")
bucket = resource.Bucket(bucket_name)
for backup_file in backup_files:
print(f"Replacing {backup_file} with {backup_directory}")
dst = str(backup_file.absolute()).replace(str(backup_directory.absolute()), "", 1).lstrip("/")
if prefix != "":
dst = f"{prefix}/{dst}"
Expand Down

0 comments on commit 5d7dcd8

Please sign in to comment.