Skip to content

Commit c9813b3

Browse files
committed
remove rogue println
1 parent 69a2371 commit c9813b3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

site/src/github.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,7 @@ pub async fn rollup_pr(client: &client::Client, message: &str) -> Result<Option<
9898
let number = ROLLUP_PR_NUMBER
9999
.captures(&message)
100100
.and_then(|c| c.get(1))
101-
.map(|m| {
102-
println!("{}", m.as_str());
103-
m.as_str().parse::<u64>()
104-
})
101+
.map(|m| m.as_str().parse::<u64>())
105102
.transpose()
106103
.map_err(|e| format!("Error parsing PR number from '{message}': {e:?}"))?;
107104

0 commit comments

Comments
 (0)