From: W. Trevor King Date: Sat, 18 Jul 2009 13:51:17 +0000 (-0400) Subject: Fixed typo in one of be-handle-mail's InvalidCommand calls. X-Git-Tag: 1.0.0~62^2~46^2~46 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c11db47e9708ee53771598205fa82437bcbbe957;p=be.git Fixed typo in one of be-handle-mail's InvalidCommand calls. Also restored Makefile target to home (from local), which I'd accidentally committed two commits ago... --- diff --git a/Makefile b/Makefile index 61f67c8..cc2f91c 100644 --- a/Makefile +++ b/Makefile @@ -39,8 +39,8 @@ MODULES += ${DOC_DIR} RM = rm PREFIX = /usr/local -#PREFIX = ${HOME} -INSTALL_OPTIONS = "--prefix=${PREFIX}" +PREFIX = ${HOME} +#INSTALL_OPTIONS = "--prefix=${PREFIX}" .PHONY: all diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail index 42d85ac..7d165be 100755 --- a/interfaces/email/interactive/be-handle-mail +++ b/interfaces/email/interactive/be-handle-mail @@ -125,7 +125,7 @@ def run_message(msg_text): command = args[1] info["command"] = command if command not in ALLOWED_COMMANDS: - raise InvalidCommand(msg, command) + raise InvalidCommand(msg, info, command) if len(args) > 2: command_args = args[2:] else: