Skip to content

Commit

Permalink
Remove a debug print in patchelf mod
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Jan 3, 2023
1 parent c51d80b commit 94a5e4f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/auditwheel/patchelf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ pub fn verify_patchelf() -> Result<()> {
let semver = version
.parse::<semver::Version>()
.context("Failed to parse patchelf version")?;
println!("{:?}", semver);
if semver < semver::Version::new(0, 14, 0) {
bail!(
"patchelf {} found. auditwheel repair requires patchelf >= 0.14.",
Expand Down

0 comments on commit 94a5e4f

Please sign in to comment.