summaryrefslogtreecommitdiffstats
path: root/ui/src/conf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/conf.rs')
-rw-r--r--ui/src/conf.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/conf.rs b/ui/src/conf.rs
index 534168af..56539ed0 100644
--- a/ui/src/conf.rs
+++ b/ui/src/conf.rs
@@ -286,7 +286,7 @@ impl FileSettings {
impl Settings {
pub fn new() -> Settings {
let fs = FileSettings::new().unwrap_or_else(|e| {
- println!("Configuration error: {}", e);
+ eprintln!("Configuration error: {}", e);
std::process::exit(1);
});
let mut s: HashMap<String, AccountConf> = HashMap::new();