diff options
| author | Ellie Huxtable <e@elm.sh> | 2021-02-15 20:31:58 +0000 |
|---|---|---|
| committer | Ellie Huxtable <e@elm.sh> | 2021-02-15 20:33:39 +0000 |
| commit | 48198cdfe9ac2286a23ae823da8f8e90aca540f1 (patch) | |
| tree | bfbfa1352094f903eba00565d9e02ae43c261871 /src/command/import.rs | |
| parent | use database trait instead of sqlite impl (#10) (diff) | |
| download | atuin-48198cdfe9ac2286a23ae823da8f8e90aca540f1.zip | |
Fix import message
Diffstat (limited to '')
| -rw-r--r-- | src/command/import.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command/import.rs b/src/command/import.rs index 4c3714b5..ae927aaf 100644 --- a/src/command/import.rs +++ b/src/command/import.rs @@ -115,7 +115,8 @@ fn import_zsh(db: &mut impl Database) -> Result<()> { progress.inc(buf.len() as u64); } - progress.finish_with_message("Imported history!"); + progress.finish(); + println!("Import complete!"); Ok(()) } |
