Skip to content

Commit

Permalink
fix issue #64 again, for python2
Browse files Browse the repository at this point in the history
  • Loading branch information
Yggdroot committed Sep 12, 2017
1 parent c955c25 commit d1fcb7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autoload/leaderf/python/leaderf/fileExpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,8 @@ def getContent(self, *args, **kwargs):
def getFreshContent(self, *args, **kwargs):
if self._external_cmd:
self._content = []
return self.getContent(*args, **kwargs, refresh=True)
kwargs["refresh"] = True
return self.getContent(*args, **kwargs)

self._refresh()
self._content = self._getFileList(self._cur_dir)
Expand Down

0 comments on commit d1fcb7f

Please sign in to comment.