Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have module named qwe.py in ~/

executing next lines:

(setq pymacs-load-path (list "~/"))
(pymacs-load "qwe")

returns a error:

    Debugger entered--Lisp error: (error "Pymacs loading qwe...failed")
  signal(error ("Pymacs loading qwe...failed"))
  pymacs-report-error("Pymacs loading %s...failed" "qwe")
  (cond (lisp-code (let ((result (eval lisp-code))) (message "Pymacs loading %s...done" module) result)) (noerror (message "Pymacs loading %s...failed" module) nil) (t (pymacs-report-error "Pymacs loading %s...failed" module)))
  (let ((lisp-code (pymacs-call "pymacs_load_helper" module prefix))) (cond (lisp-code (let ((result (eval lisp-code))) (message "Pymacs loading %s...done" module) result)) (noerror (message "Pymacs loading %s...failed" module) nil) (t (pymacs-report-error "Pymacs loading %s...failed" module))))
  pymacs-load("qwe")
  (progn (pymacs-load "qwe"))
  eval((progn (pymacs-load "qwe")) t)
  eval-last-sexp-1(nil)
  eval-last-sexp(nil)
  call-interactively(eval-last-sexp nil nil)

if to copy qwe.py in /usr/lib/python2.7/ everything is ok. What am I doing wrong?

Pymacs 0.25

Emacs 24.2

Changed this variable in pymacs.el, and it's working, pardon :)

share|improve this question
Have you tried expanding the name of you home directory? I.e. (list (expand-file-name "~/")) instead of what you have now? Maybe it just doesn't do expansion on its own. – wvxvw Oct 28 '12 at 12:16
Yes I have (manually to "/home/sergeek/"). Anyway it doesn't matter already, I just should read this more attentively, thank you. – sergeek Oct 28 '12 at 12:59

1 Answer

up vote 0 down vote accepted

I should change this variable in pymacs.el

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.