diff --git a/crates/ptth_server/src/bin/ptth_server.rs b/crates/ptth_server/src/bin/ptth_server.rs index 321d3dd..6fb0fe4 100644 --- a/crates/ptth_server/src/bin/ptth_server.rs +++ b/crates/ptth_server/src/bin/ptth_server.rs @@ -36,7 +36,8 @@ fn main () -> Result <(), anyhow::Error> { let config_file: ConfigFile = load_toml::load (&path)?; if opt.print_tripcode { - println! (r#""{}" = "{}""#, config_file.name, config_file.tripcode ()); + println! (r#"name = "{}""#, config_file.name); + println! (r#"tripcode = "{}""#, config_file.tripcode ()); return Ok (()); }