From 70445347654a6e5c9634fb7d3f8f864b47c2f830 Mon Sep 17 00:00:00 2001 From: TimmeeY Date: Thu, 26 May 2016 15:03:34 +0200 Subject: [PATCH] Added Shiptype to fitting name in minimal html export On minimalistic HTMLExport, the shiptype (name) will be added infront of the fitting name to all fits on export --- gui/utils/exportHtml.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/utils/exportHtml.py b/gui/utils/exportHtml.py index eabf2bd61..e3338774e 100644 --- a/gui/utils/exportHtml.py +++ b/gui/utils/exportHtml.py @@ -272,8 +272,8 @@ class exportHtmlThread(threading.Thread): return try: dnaFit = sFit.exportDna(fit[0]) - HTML += ' IGB' +\ - ' / OOGB '+ fit[1]+ '
' + HTML += 'IGB' +\ + ' / OOGB '+ship.name +': '+ fit[1]+ '
\n' except: continue finally: