summaryrefslogtreecommitdiffstats
path: root/src/flags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/flags.rs')
-rw-r--r--src/flags.rs10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/flags.rs b/src/flags.rs
index abe3d3c..1771141 100644
--- a/src/flags.rs
+++ b/src/flags.rs
@@ -103,7 +103,10 @@ impl Flags {
let glob = match Glob::new(pattern) {
Ok(g) => g,
Err(e) => {
- return Err(Error::with_description(&e.to_string(), ErrorKind::ValueValidation));
+ return Err(Error::with_description(
+ &e.to_string(),
+ ErrorKind::ValueValidation,
+ ));
}
};
ignore_globs_builder.add(glob);
@@ -112,7 +115,10 @@ impl Flags {
let ignore_globs = match ignore_globs_builder.build() {
Ok(globs) => globs,
Err(e) => {
- return Err(Error::with_description(&e.to_string(), ErrorKind::ValueValidation));
+ return Err(Error::with_description(
+ &e.to_string(),
+ ErrorKind::ValueValidation,
+ ));
}
};