1
0
forked from VimPlug/jedi

Cache bug fixes.

This commit is contained in:
Dave Halter
2015-04-22 03:01:32 +02:00
parent 05554a1c89
commit 7af5c23874
2 changed files with 3 additions and 3 deletions

View File

@@ -212,7 +212,7 @@ def load_parser(path):
def save_parser(path, parser, pickling=True):
try:
p_time = os.path.getmtime(path)
p_time = None if path is None else os.path.getmtime(path)
except OSError:
p_time = None
pickling = False