From: W. Trevor King Date: Sat, 18 Jul 2009 12:23:13 +0000 (-0400) Subject: Fixed options.logfile -> logpath typo in be-handle-mail.open_logfile(). X-Git-Tag: 1.0.0~62^2~46^2~53 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=57222070fe85d19173f7bb4879b4b893bb8ae5da;p=be.git Fixed options.logfile -> logpath typo in be-handle-mail.open_logfile(). --- 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":