From 6b0f5d899f063af7278fa773a136463cbdb90bbd Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 29 Oct 2012 14:01:51 -0400 Subject: [PATCH] Hardcode logging path for zephyrs. (imported from commit c40fc9b67cae201cd2e94033257fb5f43602a5f2) --- bots/zephyr_mirror.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bots/zephyr_mirror.py b/bots/zephyr_mirror.py index d13f42b..2c70941 100755 --- a/bots/zephyr_mirror.py +++ b/bots/zephyr_mirror.py @@ -291,7 +291,7 @@ def zephyr_to_humbug(options): subs.add(("mail", "inbox", options.user + "@ATHENA.MIT.EDU")) if options.resend_log: - with open('zephyrs', 'r') as log: + with open('/mit/tabbott/Private/zephyrs', 'r') as log: for ln in log: try: zeph = simplejson.loads(ln) @@ -307,7 +307,7 @@ def zephyr_to_humbug(options): print "%s: zephyr=>humbug: Starting receive loop." % (datetime.datetime.now(),) if options.enable_log: - log_file = "zephyrs" + log_file = "/mit/tabbott/Private/zephyrs" else: log_file = "/dev/null"