commit 3838fdbdcc9b2baf2951248203bb0edcc123bea7
parent 59e457d22c7a873c5c2fc8d9014b22bc201c1e96
Author: Johann Bauer <bauerj@bauerj.eu>
Date: Mon, 26 Feb 2018 12:20:15 +0100
Change name of version field in crashhub request
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui/qt/exception_window.py b/gui/qt/exception_window.py
@@ -43,7 +43,7 @@ issue_template = """<h2>Traceback</h2>
<h2>Additional information</h2>
<ul>
- <li>Electrum version: {electrum_version}</li>
+ <li>Electrum version: {app_version}</li>
<li>Operating system: {os}</li>
<li>Wallet type: {wallet_type}</li>
<li>Locale: {locale}</li>
@@ -154,7 +154,7 @@ class Exception_Window(QWidget):
def get_additional_info(self):
args = {
- "electrum_version": ELECTRUM_VERSION,
+ "app_version": ELECTRUM_VERSION,
"os": platform.platform(),
"wallet_type": "unknown",
"locale": locale.getdefaultlocale()[0],