diff options
author | elijah <elijah@riseup.net> | 2016-05-11 15:05:57 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-05-11 17:24:02 -0700 |
commit | cd95c8d2e285538e282dbf2b5e848b4154c3606c (patch) | |
tree | c7c955c2bacd184b3223a74fdd8b6733152060d9 | |
parent | c7f9bbcc8fe075750e4041c5a7f00c8767dd38b5 (diff) |
[bug] remove "about bitmask" easter egg
-rw-r--r-- | src/leap/bitmask/gui/mainwindow.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py index 25ee4f3d..e7b849e5 100644 --- a/src/leap/bitmask/gui/mainwindow.py +++ b/src/leap/bitmask/gui/mainwindow.py @@ -1030,12 +1030,9 @@ class MainWindow(QtGui.QMainWindow, SignalTracker): Display the About Bitmask dialog """ today = datetime.now().date() - greet = ("Happy New 1984!... or not ;)<br><br>" - if today.month == 1 and today.day < 15 else "") title = self.tr("About Bitmask - %s") % (VERSION,) msg = self.tr( "Version: <b>{ver}</b> ({ver_hash})<br>" - "<br>{greet}" "Bitmask is the Desktop client application for the LEAP " "platform, supporting Encrypted Internet Proxy " "and <a href='https://bitmask.net/help/email'> " @@ -1046,7 +1043,7 @@ class MainWindow(QtGui.QMainWindow, SignalTracker): "available.<br>" "<br>" "<a href='https://leap.se'>More about LEAP</a>") - msg = msg.format(ver=VERSION, ver_hash=VERSION_HASH[:10], greet=greet) + msg = msg.format(ver=VERSION, ver_hash=VERSION_HASH[:10]) QtGui.QMessageBox.about(self, title, msg) def _help(self): |