Merge pull request #4 from syohex/fix-byte-compiled-case

Fix for loading byte-compiled file
This commit is contained in:
Glyph 2016-05-05 20:24:57 -07:00
commit bfd5961e2a

View file

@ -32,7 +32,9 @@
;;; Code:
(defvar python-docstring-script
(concat (file-name-as-directory (file-name-directory #$))
(concat (if load-file-name
(file-name-directory load-file-name)
default-directory)
"docstring_wrap.py")
"The location of the docstring_wrap.py script.")