diff options
| -rw-r--r-- | src/leap/bitmask/vpn/fw/firewall.py | 3 | ||||
| -rw-r--r-- | src/leap/bitmask/vpn/process.py | 2 | 
2 files changed, 1 insertions, 4 deletions
| diff --git a/src/leap/bitmask/vpn/fw/firewall.py b/src/leap/bitmask/vpn/fw/firewall.py index 5100a5ee..9cd65ed6 100644 --- a/src/leap/bitmask/vpn/fw/firewall.py +++ b/src/leap/bitmask/vpn/fw/firewall.py @@ -113,8 +113,6 @@ class _LinuxFirewallManager(object):          if restart:              cmd.append("restart") - -        print "LAUNCHING FIREWALL..."          result = '<did not run>'          try:              retcode, result = commands.getstatusoutput( @@ -123,7 +121,6 @@ class _LinuxFirewallManager(object):              log.failure('Error launching the firewall')          finally:              log.debug(result) -        print "LAUNCHED FIREWALL", result          emit_async(catalog.VPN_STATUS_CHANGED)          return True diff --git a/src/leap/bitmask/vpn/process.py b/src/leap/bitmask/vpn/process.py index 8c61db21..93e73d97 100644 --- a/src/leap/bitmask/vpn/process.py +++ b/src/leap/bitmask/vpn/process.py @@ -113,7 +113,7 @@ class _VPNProcess(protocol.ProcessProtocol):      def outReceived(self, data):          # use this to debug failed invocations. -        print("DEBUG VPN: %s" % data) +        # print("DEBUG VPN: %s" % data)          pass      @defer.inlineCallbacks | 
