aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Hurst <julian.hurst@digdash.com>2025-01-15 18:37:30 +0100
committerJulian Hurst <julian.hurst@digdash.com>2025-01-15 18:37:51 +0100
commit3390f5e1c7cffbd6d484690951cab15455e5d20d (patch)
tree659b619bddd0ed6bc10c4e6a0d479f499802052d
parent0490236116c4fcf80563251e4175dbcc78e05787 (diff)
downloadhatask-3390f5e1c7cffbd6d484690951cab15455e5d20d.tar.gz
Don't print key if getting a specific misc propHEADmaster
-rw-r--r--cmd.ha2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd.ha b/cmd.ha
index 717db2f..2021a44 100644
--- a/cmd.ha
+++ b/cmd.ha
@@ -257,7 +257,7 @@ fn getmisc(cfg: config, tasks: []task, a: arguments) (void | task | error) = {
case void =>
return "No such misc property";
case let val: str =>
- fmt::printfln("{}: {}", args[1], val)!;
+ fmt::printfln("{}", val)!;
};
};
};