diff options
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | interfaces/email/interactive/be-handle-mail | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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: |