Skip to content

Commit e21e48d

Browse files
committed
chore: fix new clippy error
This came through from one of the newer versions of Rust.
1 parent 893e754 commit e21e48d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,7 @@ impl AntReleaseRepoActions for AntReleaseRepository {
542542
)));
543543
}
544544

545-
Err(Error::Io(std::io::Error::new(
546-
std::io::ErrorKind::Other,
545+
Err(Error::Io(std::io::Error::other(
547546
"Failed to extract archive",
548547
)))
549548
}

0 commit comments

Comments
 (0)