Only measure once when in group for Python

[GitHub #79]
This commit is contained in:
Aoran Zeng
2024-09-14 01:39:51 +08:00
parent 2e33ef697e
commit ca1dd97a52
7 changed files with 57 additions and 101 deletions

View File

@@ -654,9 +654,9 @@ main (int argc, char const *argv[])
if (CliOpt_DryRun)
{
char *dry_msg = CliOpt_InEnglish ? "** Enable [Dry Run] mode. " \
char *dry_msg = CliOpt_InEnglish ? "**Enable [Dry Run] mode. " \
"Simulate the source changing process (skipping speed measurement). " \
"Commands only print but don't run **\n"
"Commands only print but don't run**\n"
: "**开启Dry Run模式模拟换源过程(跳过测速),命令仅打印并不运行**\n";
chsrc_log (bdyellow(dry_msg));
}