summaryrefslogtreecommitdiff
path: root/src/leap/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/gui')
-rw-r--r--src/leap/gui/mainwindow.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py
index 2a72d4d6..882a5a99 100644
--- a/src/leap/gui/mainwindow.py
+++ b/src/leap/gui/mainwindow.py
@@ -36,6 +36,7 @@ from leap.services.eip.eipconfig import EIPConfig
from leap.gui.wizard import Wizard
from leap.util.check import leap_assert
from leap.util.checkerthread import CheckerThread
+from leap import __version__ as VERSION
logger = logging.getLogger(__name__)
@@ -306,7 +307,7 @@ class MainWindow(QtGui.QMainWindow):
Display the About LEAP dialog
"""
QtGui.QMessageBox.about(
- self, self.tr("About LEAP"),
+ self, self.tr("About LEAP - %s") % (VERSION,),
self.tr("LEAP is a non-profit dedicated to giving "
"all internet users access to secure "
"communication. Our focus is on adapting "