Change name of version field in crashhub request

This commit is contained in:
Johann Bauer 2018-02-26 12:20:15 +01:00
parent 59e457d22c
commit 3838fdbdcc
No known key found for this signature in database
GPG Key ID: 84F1BF925B1F484D
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ issue_template = """<h2>Traceback</h2>
<h2>Additional information</h2> <h2>Additional information</h2>
<ul> <ul>
<li>Electrum version: {electrum_version}</li> <li>Electrum version: {app_version}</li>
<li>Operating system: {os}</li> <li>Operating system: {os}</li>
<li>Wallet type: {wallet_type}</li> <li>Wallet type: {wallet_type}</li>
<li>Locale: {locale}</li> <li>Locale: {locale}</li>
@ -154,7 +154,7 @@ class Exception_Window(QWidget):
def get_additional_info(self): def get_additional_info(self):
args = { args = {
"electrum_version": ELECTRUM_VERSION, "app_version": ELECTRUM_VERSION,
"os": platform.platform(), "os": platform.platform(),
"wallet_type": "unknown", "wallet_type": "unknown",
"locale": locale.getdefaultlocale()[0], "locale": locale.getdefaultlocale()[0],