Skip to content

Commit

Permalink
SQUASHME: pick more lint
Browse files Browse the repository at this point in the history
  • Loading branch information
webbnh committed Jul 31, 2023
1 parent 4a2c2ee commit a5fd034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pbench/server/cache_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,11 +394,11 @@ def create(cls, tarball: Path, controller: "Controller") -> "Tarball":
except Exception as e:
try:
md5_destination.unlink()
except Exception as e:
except Exception as md5_e:
controller.logger.error(
"Unable to recover by removing {} MD5 after tarball copy failure: {}",
name,
e,
md5_e,
)
controller.logger.error(
"ERROR copying dataset {} tarball {}: {}", name, tarball, e
Expand Down

0 comments on commit a5fd034

Please sign in to comment.