From 2b68b18b1fdb70c25f9636ff5e8debfb548b2ec1 Mon Sep 17 00:00:00 2001 From: Carolyn Van Slyck Date: Tue, 25 Aug 2020 12:13:58 -0500 Subject: [PATCH] Fix migrate credential log message Forgot the word schema from the message! >.<; --- pkg/storage/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/storage/manager.go b/pkg/storage/manager.go index d42f9ef29..eeaffe0a1 100644 --- a/pkg/storage/manager.go +++ b/pkg/storage/manager.go @@ -514,7 +514,7 @@ func (m *Manager) migrateCredentials(w io.Writer) error { continue } - fmt.Fprintf(w, " - Migrating credential set %s to the new ...\n", cred.Name) + fmt.Fprintf(w, " - Migrating credential set %s to the new schema...\n", cred.Name) cred.SchemaVersion = credentials.DefaultSchemaVersion err = credStore.Save(cred)