diff --git a/gui/utils/exportHtml.py b/gui/utils/exportHtml.py index 2796c7dd6..9fc20eff6 100644 --- a/gui/utils/exportHtml.py +++ b/gui/utils/exportHtml.py @@ -237,14 +237,10 @@ class exportHtmlThread(threading.Thread): -""" - +""" return HTML - - - - + def generateMinimalHTML(self,sMkt,sFit,dnaUrl): """ Generate a minimal HTML version of the fittings, without any javascript or styling""" categoryList = list(sMkt.getShipRoot()) @@ -268,15 +264,11 @@ class exportHtmlThread(threading.Thread): return try: dnaFit = sFit.exportDna(fit[0]) - HTML += 'IGB' +\ - ' / OOGB '+ship.name +': '+ fit[1]+ '
\n' + HTML += ''+ship.name +': '+ fit[1]+ '
\n' except: continue finally: if self.callback: wx.CallAfter(self.callback, count) count += 1 - return HTML; - - - + return HTML