branch: elpa/beancount commit ada0966cddfed0fdab52e1166e479481a759775f Author: Martin Blais <bl...@furius.ca> Commit: Martin Blais <bl...@furius.ca>
Moved src/python/beancount/... to beancount/... --- beancount.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/beancount.el b/beancount.el index 26fa8cfe57..0fed953630 100644 --- a/beancount.el +++ b/beancount.el @@ -73,7 +73,7 @@ (defconst beancount-option-names ;; This list is kept in sync with the options defined in - ;; src/python/beancount/parser/options.py. + ;; beancount/parser/options.py. ;; Note: We should eventually build a tool that spits out the current list ;; automatically. '("title" @@ -581,12 +581,11 @@ Only useful if you have not installed Beancount properly in your PATH.") (defun beancount--run (prog &rest args) (let ((process-environment (if beancount-install-dir - `(,(concat "PYTHONPATH=" - (expand-file-name "src/python" - beancount-install-dir)) + `(,(concat "PYTHONPATH=" beancount-install-dir) ,(concat "PATH=" (expand-file-name "bin" beancount-install-dir) - ":" (getenv "PATH")) + ":" + (getenv "PATH")) ,@process-environment) process-environment)) (compile-command (mapconcat (lambda (arg)