Skip to content

Commit

Permalink
Fix missing word in debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
nokyan committed Dec 12, 2024
1 parent 75b15d5 commit 9276cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ impl App {

if let Some(executable_name) = &executable_name {
if DESKTOP_EXEC_BLOCKLIST.contains(&executable_name.as_str()) {
debug!("Skipping {id} because its executable {executable_name} blocklisted…");
debug!("Skipping {id} because its executable {executable_name} is blocklisted…");
bail!("{id}'s executable {executable_name} is blocklisted")
}
}
Expand Down

0 comments on commit 9276cad

Please sign in to comment.