From 7dba5e76951a7e4cc6833c42bbcc5bfb6d288154 Mon Sep 17 00:00:00 2001 From: sleepy_nols <138515901+sleepy-nols@users.noreply.github.com> Date: Sun, 28 Apr 2024 21:24:42 +0200 Subject: [PATCH] update '.data' warning message to '*.data' for better readability (#3409) TDB2: update '.data' warning to '*.data' for better readability, closes #3406 --- src/TDB2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TDB2.cpp b/src/TDB2.cpp index 42b747be5..561511d98 100644 --- a/src/TDB2.cpp +++ b/src/TDB2.cpp @@ -62,7 +62,7 @@ void TDB2::open_replica (const std::string& location, bool create_if_missing) if (pending_data.exists()) { Color warning = Color (Context::getContext ().config.get ("color.warning")); std::cerr << warning.colorize ( - format ("Found existing '.data' files in {1}", location)) << "\n"; + format ("Found existing '*.data' files in {1}", location)) << "\n"; std::cerr << " Taskwarrior's storage format changed in 3.0, requiring a manual migration.\n"; std::cerr << " See https://github.com/GothenburgBitFactory/taskwarrior/releases.\n"; }