mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
fix fmt
This commit is contained in:
parent
13ba5bd405
commit
b23057ee61
1 changed files with 5 additions and 3 deletions
|
@ -105,9 +105,11 @@ pub fn disown(parser: &Parser, streams: &mut IoStreams, args: &mut [&wstr]) -> O
|
|||
if let Some(j) = parser.job_get_from_pid(pid) {
|
||||
jobs.push(j);
|
||||
} else {
|
||||
streams
|
||||
.err
|
||||
.append(wgettext_fmt!("%ls: Could not find job '%d'\n", cmd, pid));
|
||||
streams.err.append(wgettext_fmt!(
|
||||
"%ls: Could not find job '%d'\n",
|
||||
cmd,
|
||||
pid
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue