Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.9.4.15 #157

Merged
merged 8 commits into from
Dec 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added missing f
Paul Nilsson committed Dec 16, 2024
commit de184aacc7e101c74d5b23ba8ce788f0c5ede872
2 changes: 1 addition & 1 deletion pilot/api/data.py
Original file line number Diff line number Diff line change
@@ -1057,7 +1057,7 @@ def check_availablespace(self, files: list):
else:
if disk_space:
available_space = convert_mb_to_b(disk_space)
self.logger.info("locally available space: {available_space} B")
self.logger.info(f"locally available space: {available_space} B")

# are we within the limit?
if totalsize > available_space: