From e9e11608825b745edc964e47de653408be8456b8 Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Tue, 28 May 2024 21:10:56 -0400 Subject: [PATCH] Update stats.py --- stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stats.py b/stats.py index 850b679b3..db61f7892 100644 --- a/stats.py +++ b/stats.py @@ -57,7 +57,7 @@ def status(data: dict[str, Any]) -> list[list[str]]: """ # StatsResults assumes these three things are first res = [ - [tr.tl('Cmdr'), data['commander']['name']], + [tr.tl('Cmdr'), data['commander']['name']], # LANG: Cmdr stats [tr.tl('Balance'), str(data['commander'].get('credits', 0))], # LANG: Cmdr stats [tr.tl('Loan'), str(data['commander'].get('debt', 0))], # LANG: Cmdr stats ]