From f7089f358d8b4f448dfc339f3e01bfe4d4a0ca46 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Wed, 30 Oct 2019 16:12:33 +0300 Subject: [PATCH] Fix stats export parenthesis --- service/port/shipstats.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/service/port/shipstats.py b/service/port/shipstats.py index 0ab42c30a..897387122 100644 --- a/service/port/shipstats.py +++ b/service/port/shipstats.py @@ -49,10 +49,10 @@ def tankSection(fit): def generalOutput(): return \ - "EHP: {:>} (Em: {:>}, Th: {:>}, Kin: {:>}, Exp: {:>}\n".format(ehpStr[3], *ehpAgainstDamageTypeStr) + \ - "Shield: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%}\n".format(ehpStr[0], *resists["shield"]) + \ - "Armor: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%}\n".format(ehpStr[1], *resists["armor"]) + \ - "Hull: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%}\n".format(ehpStr[2], *resists["hull"]) + "EHP: {:>} (Em: {:>}, Th: {:>}, Kin: {:>}, Exp: {:>})\n".format(ehpStr[3], *ehpAgainstDamageTypeStr) + \ + "Shield: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[0], *resists["shield"]) + \ + "Armor: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[1], *resists["armor"]) + \ + "Hull: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[2], *resists["hull"]) return generalOutput()