diff options
| author | Andreas Grois <andi@grois.info> | 2021-11-27 12:21:04 +0100 |
|---|---|---|
| committer | Andreas Grois <andi@grois.info> | 2021-11-27 12:21:04 +0100 |
| commit | 061f98634f1898119c3b221ebae5794b996a5dcc (patch) | |
| tree | fe587fd3cac38c7127074a4a65d5434bda5f16a2 | |
| parent | 3a3bd2c38ef96ec5f627c63584d552549e725064 (diff) | |
Fix unintentional new-line in string.
| -rw-r--r-- | swaystatus/src/main.rs | 3 |
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) { |
