From 0cbff7f763b02f0b2b535a723300165834cbfc56 Mon Sep 17 00:00:00 2001 From: Valentine Wallace Date: Wed, 12 May 2021 12:36:40 -0400 Subject: [PATCH] Fix badly formatted log Otherwise there's random \t\t's in the log --- src/cli.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 34987a8..dc8bb40 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -638,8 +638,7 @@ pub(crate) fn parse_peer_info( if peer_addr_str.is_none() || peer_addr_str.is_none() { return Err(std::io::Error::new( std::io::ErrorKind::Other, - "ERROR: incorrectly formatted peer - info. Should be formatted as: `pubkey@host:port`", + "ERROR: incorrectly formatted peer info. Should be formatted as: `pubkey@host:port`", )); } -- 2.30.2