From b8e44a3fc43cb82ed2f047d9b268c7ff282961a5 Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Tue, 24 Sep 2024 09:42:34 -0400 Subject: [PATCH] fix: use globeln for printing url Co-authored-by: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> --- cmd/soroban-cli/src/config/sign_with.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/soroban-cli/src/config/sign_with.rs b/cmd/soroban-cli/src/config/sign_with.rs index 394c35f00..403deeafa 100644 --- a/cmd/soroban-cli/src/config/sign_with.rs +++ b/cmd/soroban-cli/src/config/sign_with.rs @@ -82,7 +82,7 @@ impl Args { let txn_sign_url = url.to_string(); - printer.println(format!("Opening lab to sign transaction: {txn_sign_url}")); + printer.globeln(format!("Opening lab to sign transaction: {txn_sign_url}")); open::that(txn_sign_url)?; Ok(())