From: Valentine Wallace Date: Wed, 12 May 2021 16:36:40 +0000 (-0400) Subject: Fix badly formatted log X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-sample;a=commitdiff_plain;h=0cbff7f763b02f0b2b535a723300165834cbfc56 Fix badly formatted log Otherwise there's random \t\t's in the log --- 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`", )); }