From dc582fc2668008ed041e3cbae2436058e3718713 Mon Sep 17 00:00:00 2001 From: Adam Blackburn Date: Sat, 2 Jan 2010 19:43:17 -1000 Subject: [PATCH 1/2] changed the path of monitor.py to the correct one so it will run again --- wicd/wicd-daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicd/wicd-daemon.py b/wicd/wicd-daemon.py index be08c75..583209f 100644 --- a/wicd/wicd-daemon.py +++ b/wicd/wicd-daemon.py @@ -1790,7 +1790,7 @@ def main(argv): daemon = WicdDaemon(wicd_bus, auto_connect=auto_connect) if not no_poll: child_pid = Popen([misc.find_path("python"), "-O", - os.path.join(wpath.lib, "daemon", "monitor.py")], + os.path.join(wpath.share, "daemon", "monitor.py")], shell=False, close_fds=True).pid atexit.register(on_exit, child_pid) From 9bde8da50b6c31007bd3e615b1540876add074ca Mon Sep 17 00:00:00 2001 From: Adam Blackburn Date: Sat, 2 Jan 2010 19:46:33 -1000 Subject: [PATCH 2/2] changed the path of monitor.py to the correct one so it will run again --- wicd/wicd-daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicd/wicd-daemon.py b/wicd/wicd-daemon.py index be08c75..b764963 100644 --- a/wicd/wicd-daemon.py +++ b/wicd/wicd-daemon.py @@ -1790,7 +1790,7 @@ def main(argv): daemon = WicdDaemon(wicd_bus, auto_connect=auto_connect) if not no_poll: child_pid = Popen([misc.find_path("python"), "-O", - os.path.join(wpath.lib, "daemon", "monitor.py")], + os.path.join(wpath.daemon, "monitor.py")], shell=False, close_fds=True).pid atexit.register(on_exit, child_pid)