aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Schoolmann <mail@quexten.com>2023-03-15 22:43:14 +0100
committerBernd Schoolmann <mail@quexten.com>2023-03-26 04:28:18 +0200
commitfe9cabecd673eb5d409c764ebaf7a76cdcb47139 (patch)
treef15f4f99cd48468e1eeae7e68fad4b67b1ebdf38
parent22f7344befc026666b48e3153c4dfe4175f052ee (diff)
downloadrbw-fe9cabecd673eb5d409c764ebaf7a76cdcb47139.tar.gz
rbw-fe9cabecd673eb5d409c764ebaf7a76cdcb47139.zip
Undo change to iterations error message
-rw-r--r--src/bin/rbw-agent/actions.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/rbw-agent/actions.rs b/src/bin/rbw-agent/actions.rs
index 56a98e9..361009b 100644
--- a/src/bin/rbw-agent/actions.rs
+++ b/src/bin/rbw-agent/actions.rs
@@ -366,7 +366,7 @@ pub async fn unlock(
let Some(iterations) = db.iterations
else {
return Err(anyhow::anyhow!(
- "failed to find iterations in db"
+ "failed to find number of iterations in db"
));
};