diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-17 08:21:49 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-17 08:21:49 -0400 |
commit | edad653b9ecffb996d187ccdbbf13e307e5863e1 (patch) | |
tree | e654d05bb919f1f665ceacd650d1260c7610c78d /interfaces/email/interactive/be-handle-mail | |
parent | 3f2fe9c57ba89818af4b80636087c6dfba1d329e (diff) | |
download | bugseverywhere-edad653b9ecffb996d187ccdbbf13e307e5863e1.tar.gz |
Setup be-handle-mail.BE_DIR to point to the BE repo by default.
At least, it points to the directory where be-handle-mail lives. If
you haven't moved it, that will be somewhere inside the BE repository.
This removes my hardcoded BE_DIR.
Diffstat (limited to 'interfaces/email/interactive/be-handle-mail')
-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 180320d..666538d 100755 --- a/interfaces/email/interactive/be-handle-mail +++ b/interfaces/email/interactive/be-handle-mail @@ -41,7 +41,7 @@ import time SUBJECT_COMMENT = "[be-bug]" HANDLER_ADDRESS = "BE Bugs <wking@thor.physics.drexel.edu>" LOGFILE = os.path.join(os.path.dirname(__file__), "be-handle-mail.log") -BE_DIR = os.path.expanduser("~/src/fun/be/be.email") +BE_DIR = os.path.abspath(os.path.dirname(__file__)) ALLOWED_COMMANDS = ["new", "comment", "list", "show", "help"] |