Donate CPU Server: Fix broken links in crash report. (#1364)

This commit is contained in:
Sebastian 2018-09-03 13:07:47 +02:00 committed by Daniel Marjamäki
parent 756c1d8de7
commit 220c06e356
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ def crashReport():
out += ' ' out += ' '
if counts[1] == 'Crash!': if counts[1] == 'Crash!':
out += 'Crash' out += 'Crash'
out = '<a href=/"' + packageName + '">' + packageName + '</a>' + out[out.find(' '):] out = '<a href="' + packageName + '">' + packageName + '</a>' + out[out.find(' '):]
html += out + '\n' html += out + '\n'
break break
html += '</pre>\n' html += '</pre>\n'