aboutsummaryrefslogtreecommitdiffstats
path: root/src/parser.rs
diff options
context:
space:
mode:
authorNathan Jaremko2019-02-24 19:28:38 -0500
committerNathan Jaremko2019-02-24 19:28:38 -0500
commitec84cdd94c14583dbc57a683fc5e511d48c594fd (patch)
tree60b5359972f21d9a5f91959e451fe88809976872 /src/parser.rs
parente80219b5a569a8745fe6423eaeb4f4d8caf03924 (diff)
downloadpodcast-ec84cdd94c14583dbc57a683fc5e511d48c594fd.tar.bz2
Improve subscription behavior
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 6802ceb..caae070 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -93,12 +93,6 @@ pub fn get_app<'a, 'b>(version: &'a str) -> App<'a, 'b> {
.help("URL to RSS feed")
.required(true)
.index(1),
- )
- .arg(
- Arg::with_name("download")
- .short("d")
- .long("download")
- .help("auto download based on config"),
),
)
.subcommand(
@@ -109,12 +103,6 @@ pub fn get_app<'a, 'b>(version: &'a str) -> App<'a, 'b> {
.help("URL to RSS feed")
.required(true)
.index(1),
- )
- .arg(
- Arg::with_name("download")
- .short("d")
- .long("download")
- .help("auto download based on config"),
),
)
.subcommand(SubCommand::with_name("refresh").about("refresh subscribed podcasts"))