diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-03-12 11:53:11 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-03-12 11:53:11 -0300 |
commit | e18eb96f09069afe538508c30acd3d95e8359a12 (patch) | |
tree | 894a4a79b38e3c753fd96b16794fed23f201a1a5 /src | |
parent | 731ecfaf60d7bd0c6a52f3fd1676cfbd71696493 (diff) |
Add version to about
Diffstat (limited to 'src')
-rw-r--r-- | src/leap/gui/mainwindow.py | 3 |
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 " |