diff options
| author | Nathan Jaremko | 2019-02-24 19:28:38 -0500 |
|---|---|---|
| committer | Nathan Jaremko | 2019-02-24 19:28:38 -0500 |
| commit | ec84cdd94c14583dbc57a683fc5e511d48c594fd (patch) | |
| tree | 60b5359972f21d9a5f91959e451fe88809976872 /src/parser.rs | |
| parent | e80219b5a569a8745fe6423eaeb4f4d8caf03924 (diff) | |
| download | podcast-ec84cdd94c14583dbc57a683fc5e511d48c594fd.tar.bz2 | |
Improve subscription behavior
Diffstat (limited to 'src/parser.rs')
| -rw-r--r-- | src/parser.rs | 12 |
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")) |
