minor: fixed debug message on config.json version mismatch

This commit is contained in:
meeg_leeto 2024-03-01 21:44:16 +00:00
parent a3fc446dbc
commit 0768507036
1 changed files with 1 additions and 1 deletions

View File

@ -314,8 +314,8 @@ mod conf {
eprintln!( eprintln!(
concat!("Configuration file has outdated version.\n", concat!("Configuration file has outdated version.\n",
"Expected version field to be {} but got {}."), "Expected version field to be {} but got {}."),
config_version(),
old_version, old_version,
config_version()
); );
} }
ConfigParseError::ServeDirNotExists(dir) => { ConfigParseError::ServeDirNotExists(dir) => {