diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-12-27 12:48:12 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-12-27 12:48:12 -0300 |
commit | 61e7c5bb403ba652994b54dcea3d3bc169ef23ec (patch) | |
tree | 4579f7ffe202910b645a1b140925a44630a241b1 /src/leap/bitmask/gui/eip_status.py | |
parent | 477df116b6e7c2223fe70e73f979f43abb21288b (diff) | |
parent | 17b19d82439143193af8b8eefcfa05f20d011c89 (diff) |
Merge remote-tracking branch 'refs/remotes/kali/remove_comments' into develop
Diffstat (limited to 'src/leap/bitmask/gui/eip_status.py')
-rw-r--r-- | src/leap/bitmask/gui/eip_status.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/gui/eip_status.py b/src/leap/bitmask/gui/eip_status.py index 92bb623e..19942d9d 100644 --- a/src/leap/bitmask/gui/eip_status.py +++ b/src/leap/bitmask/gui/eip_status.py @@ -248,10 +248,10 @@ class EIPStatusWidget(QtGui.QWidget): Triggered when a default provider_config has not been found. Disables the start button and adds instructions to the user. """ - logger.debug('Hiding EIP start button') + #logger.debug('Hiding EIP start button') # you might be tempted to change this for a .setEnabled(False). # it won't work. it's under the claws of the state machine. - # probably the best thing would be to make a transitional + # probably the best thing would be to make a conditional # transition there, but that's more involved. self.eip_button.hide() msg = self.tr("You must login to use {0}".format(self._service_name)) @@ -272,7 +272,7 @@ class EIPStatusWidget(QtGui.QWidget): Triggered after a successful login. Enables the start button. """ - logger.debug('Showing EIP start button') + #logger.debug('Showing EIP start button') self.eip_button.show() # Restore the eip action menu |