Skip to content

Commit f577f15

Browse files
Fix Jedi not handling tilde in file paths
Closes #383
1 parent ba9af8c commit f577f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonic.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Take FILENAME from the perspective of the localhost and translate
132132
it to the FILENAME Python process can read. Python can be
133133
running locally or remotely. FILENAME can have local or tramp
134134
format. Result will have local format."
135-
(let ((alias (pythonic-aliased-path filename)))
135+
(let ((alias (pythonic-aliased-path (expand-file-name filename))))
136136
(if (tramp-tramp-file-p alias)
137137
(tramp-file-name-localname (tramp-dissect-file-name alias))
138138
alias)))

0 commit comments

Comments
 (0)