From 6d692bcfb5c8fbc63bdb1ec89a5ba3b996e4d41e Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Fri, 24 Feb 2023 12:43:40 +0100 Subject: [PATCH] fix version string missing colon for topgrade --- crates/pacdef_core/src/core.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/pacdef_core/src/core.rs b/crates/pacdef_core/src/core.rs index 6202a0c..618ca03 100644 --- a/crates/pacdef_core/src/core.rs +++ b/crates/pacdef_core/src/core.rs @@ -367,7 +367,7 @@ fn show_error(error: &anyhow::Error, backend: &dyn Backend) { /// If the crate was compiled from git, return `pacdef, ()`. /// Otherwise return `pacdef, `. const fn get_name_and_version() -> &'static str { - formatcp!("pacdef, version {}", get_version_string()) + formatcp!("pacdef, version: {}", get_version_string()) } /// If the crate was compiled from git, return ` ()`. Otherwise