mirror of
https://github.com/vale981/python-docstring-mode
synced 2025-03-04 17:11:41 -05:00
Merge pull request #4 from syohex/fix-byte-compiled-case
Fix for loading byte-compiled file
This commit is contained in:
commit
bfd5961e2a
1 changed files with 3 additions and 1 deletions
|
@ -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.")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue