浏览代码

Merge pull request #202 from rbrito/master

Use non-lazy enumeration for removal of dictionary keys.
pull/192/merge
William Ting 11 年前
父节点
当前提交
3bbd8e8e50
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      bin/autojump

+ 1
- 1
bin/autojump 查看文件

@ -173,7 +173,7 @@ class Database:
Deletes all entries that no longer exist on system.
"""
removed = []
for path in self.data.keys():
for path in list(self.data.keys()):
if not os.path.exists(path):
removed.append(path)
del self.data[path]

正在加载...
取消
保存