From a9cc0d44657ff9b12755e620c3b5fe06724746b6 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Thu, 5 Dec 2013 10:10:31 -0500 Subject: [PATCH] Remove extra newline in logging output. --- updates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updates.go b/updates.go index ae0e8a9..978b2b6 100644 --- a/updates.go +++ b/updates.go @@ -102,7 +102,7 @@ func updateOldFileLocations() { os.Exit(1) } - log.Infof("Updating old file locations for account %v\n", account) + log.Infof("Updating old file locations for account %v", account) // Move old wallet.bin, if any. old := filepath.Join(cfg.DataDir, fi[i].Name(), "wallet.bin")