diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-18 09:51:17 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-18 09:51:17 -0400 |
commit | c11db47e9708ee53771598205fa82437bcbbe957 (patch) | |
tree | d67fe4547dc410ed45136e1ec2ef87678581230f /interfaces/email | |
parent | 313a760feded62ba39910bf36fc4d62b56d07858 (diff) | |
download | bugseverywhere-c11db47e9708ee53771598205fa82437bcbbe957.tar.gz |
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...
Diffstat (limited to 'interfaces/email')
-rwxr-xr-x | interfaces/email/interactive/be-handle-mail | 2 |
1 files changed, 1 insertions, 1 deletions
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: |