From d2c300502e9df3922b338b0f4f524ba3c9122124 Mon Sep 17 00:00:00 2001 From: imdano <> Date: Tue, 4 Dec 2007 12:02:14 +0000 Subject: [PATCH] Fix some indentation problems and turned off stdout/stderr redirection in wicd.py since it would break things. --- daemon.py | 2 +- wicd.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/daemon.py b/daemon.py index d3d9b4c..0ea26e9 100644 --- a/daemon.py +++ b/daemon.py @@ -627,7 +627,7 @@ class ConnectionWizard(dbus.service.Object): # status, if it doesn't, we aren't connecting. status = self.wifi.connecting_thread.is_connecting if self.debug_mode == 1: - print 'wireless connecting',status + print 'wireless connecting',status return status else: print 'wireless connecting',False diff --git a/wicd.py b/wicd.py index 6def663..49722da 100755 --- a/wicd.py +++ b/wicd.py @@ -495,8 +495,8 @@ def main(argv): use_tray = False # Redirect stderr and stdout for logging purposes - sys.stderr = log - sys.stdout = log + #sys.stderr = log + #sys.stdout = log # Set up the tray icon GUI and backend tray_icon = TrayIcon(use_tray)