summaryrefslogtreecommitdiff
path: root/src/passwords.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/passwords.rs')
-rw-r--r--src/passwords.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/passwords.rs b/src/passwords.rs
index c448087..ea476bf 100644
--- a/src/passwords.rs
+++ b/src/passwords.rs
@@ -42,8 +42,6 @@ impl Passwords {
/// Save passwords to file.
pub fn save(&self, filename: &Path) -> Result<(), PasswordError> {
- eprintln!("saving passwords to {:?}", filename);
-
let data = serde_yaml::to_string(&self).map_err(PasswordError::Serialize)?;
let mut file = std::fs::File::create(filename)