Skip to content

Commit d2e4ed6

Browse files
committed
fix clippy remark
1 parent 57cc2dd commit d2e4ed6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ pub fn query_git_tags(
145145
.output()
146146
.expect("Failed to execute git tag command");
147147

148-
debug!("Output: {}", output.status.to_string());
148+
debug!("Output: {}", output.status);
149149
let stdout = String::from_utf8(output.stdout)?;
150150
debug!("Git tags: {}", stdout);
151151
debug!("Error: {}", String::from_utf8(output.stderr)?);

0 commit comments

Comments
 (0)