diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 2 | ||||
| -rw-r--r-- | src/structs.rs | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/src/main.rs b/src/main.rs index a5f5db6..5f6cfc6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -32,7 +32,7 @@ use self::utils::*;  use clap::{App, Arg, SubCommand}; -const VERSION: &str = "0.7.4"; +const VERSION: &str = "0.7.5";  fn main() -> Result<()> {      create_directories().chain_err(|| "unable to create directories")?; diff --git a/src/structs.rs b/src/structs.rs index 0fde2b3..9b921ee 100644 --- a/src/structs.rs +++ b/src/structs.rs @@ -228,7 +228,7 @@ impl Podcast {      }      pub fn download(&self) -> Result<()> { -        print!("You are about to download all episodes (y/n): "); +        print!("You are about to download all episodes of {} (y/n): ", self.title());          io::stdout().flush().ok();          let mut input = String::new();          io::stdin() | 
