aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2021-11-27 12:21:04 +0100
committerAndreas Grois <andi@grois.info>2021-11-27 12:21:04 +0100
commit061f98634f1898119c3b221ebae5794b996a5dcc (patch)
treefe587fd3cac38c7127074a4a65d5434bda5f16a2
parent3a3bd2c38ef96ec5f627c63584d552549e725064 (diff)
Fix unintentional new-line in string.
-rw-r--r--swaystatus/src/main.rs3
1 files changed, 1 insertions, 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<String>, 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) {