diff options
Diffstat (limited to 'src/deck.rs')
-rw-r--r-- | src/deck.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deck.rs b/src/deck.rs index af322c6..3524c96 100644 --- a/src/deck.rs +++ b/src/deck.rs @@ -69,7 +69,7 @@ pub fn read(deck: &String) -> Result<Vec<Entry>> { } pub fn pp_from_path(path: &String) -> Option<String> { - Some(capitalize(Path::new(&path).file_name()?.to_str()?)) + Some(capitalize(Path::new(&path).with_extension("").file_name()?.to_str()?)) } fn capitalize(s: &str) -> String { |