Skip to content

Commit 44e94bc

Browse files
committed
fix
1 parent 55094d6 commit 44e94bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deepmd/utils/summary.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ class SummaryPrinter(ABC):
4747
)
4848

4949
BUILD: ClassVar = {
50-
"Installed To": "\n".join(deepmd.__path__),
50+
"Installed to": "\n".join(deepmd.__path__),
5151
"Source": GLOBAL_CONFIG["git_summ"],
5252
"Source Branch": GLOBAL_CONFIG["git_branch"],
5353
"Source Commit": GLOBAL_CONFIG["git_hash"],
54-
"Source Commit At": GLOBAL_CONFIG["git_date"],
54+
"Source Commit at": GLOBAL_CONFIG["git_date"],
5555
"Float Precision": global_float_prec.capitalize(),
5656
"Build Variant": GLOBAL_CONFIG["dp_variant"].upper(),
5757
}
@@ -70,7 +70,7 @@ def __call__(self) -> None:
7070
)
7171
build_info.update(
7272
{
73-
"Running On": nodename,
73+
"Running on": nodename,
7474
"Computing Device": self.get_compute_device().upper(),
7575
}
7676
)

0 commit comments

Comments
 (0)