summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cli.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 018415d..131eb41 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -1277,7 +1277,6 @@ fn arg_older_than_date(about: &str) -> Arg<'_> {
"#)
.validator(parse_date_from_string)
- .conflicts_with("newer_than")
}
fn arg_newer_than_date(about: &str) -> Arg<'_> {
@@ -1308,7 +1307,6 @@ fn arg_newer_than_date(about: &str) -> Arg<'_> {
"#)
.validator(parse_date_from_string)
- .conflicts_with("older_than")
}
fn parse_date_from_string(s: &str) -> std::result::Result<(), String> {