From 061f98634f1898119c3b221ebae5794b996a5dcc Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Sat, 27 Nov 2021 12:21:04 +0100 Subject: Fix unintentional new-line in string. --- swaystatus/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/swaystatus/src/main.rs b/swaystatus/src/main.rs index e4847d9..09320f5 100644 --- a/swaystatus/src/main.rs +++ b/swaystatus/src/main.rs @@ -194,8 +194,7 @@ fn handle_crash_from_element(texts : &mut Vec, name : &str, element_numb } fn print_plugin_load_error(e : std::io::Error, plugin_path : &std::path::Path) { - eprintln!("{} {}", gettext!("Tried to load plugins from folder \"{}\", but failed. You might - want to set a plugin directory on the command line. The actual error was:", plugin_path.display()), e); + eprintln!("{} {}", gettext!("Tried to load plugins from folder \"{}\", but failed. You might want to set a plugin directory on the command line. The actual error was:", plugin_path.display()), e); } fn print_sample_config(plugin_path : &std::path::Path) { -- cgit v1.2.3