1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

Fix the GNU test

Co-authored-by: Dorian Péron <72708393+RenjiSann@users.noreply.github.com>
This commit is contained in:
Sylvestre Ledru 2025-03-23 09:00:02 +01:00 committed by Dorian Péron
parent 5e1677bb9e
commit ffe8762ee6

View file

@ -208,7 +208,7 @@ enum LsError {
#[error("{}: not listing already-listed directory", .0.to_string_lossy())]
AlreadyListedError(PathBuf),
#[error("invalid --time-style argument {0}\nPossible values are: {1:?}\n\nFor more information try --help")]
#[error("invalid --time-style argument {}\nPossible values are: {:?}\n\nFor more information try --help", .0.quote(), .1)]
TimeStyleParseError(String, Vec<String>),
}