From 57222070fe85d19173f7bb4879b4b893bb8ae5da Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 18 Jul 2009 08:23:13 -0400 Subject: Fixed options.logfile -> logpath typo in be-handle-mail.open_logfile(). --- interfaces/email/interactive/be-handle-mail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'interfaces/email/interactive') diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail index 387fceb..01b75ac 100755 --- a/interfaces/email/interactive/be-handle-mail +++ b/interfaces/email/interactive/be-handle-mail @@ -227,7 +227,7 @@ def open_logfile(logpath=None): LOGPATH = "none" LOGFILE = None elif os.path.isabs(logpath): - LOGPATH = options.path + LOGPATH = logpath else: LOGPATH = os.path.join(_THIS_DIR, logpath) if LOGFILE == None and LOGPATH != "none": -- cgit