Skip to content

Commit

Permalink
Fix #170 path problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jun 25, 2018
1 parent 45f1ac2 commit 0114863
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rplugin/python3/deoplete/sources/deoplete_jedi/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,8 @@ def __init__(self, desc_len=0, short_types=False, show_docstring=False,
else:
prog = 'python'

self.cmd = [prog, '-u', __file__, '--desc-length', str(desc_len)]
self.cmd = [prog, '-u', os.path.normpath(__file__),
'--desc-length', str(desc_len)]
if short_types:
self.cmd.append('--short-types')
if show_docstring:
Expand Down

0 comments on commit 0114863

Please sign in to comment.