summaryrefslogtreecommitdiffstats
path: root/pym/cache/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/cache/util.py')
-rw-r--r--pym/cache/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/cache/util.py b/pym/cache/util.py
index 26d917af3..7e5e1f771 100644
--- a/pym/cache/util.py
+++ b/pym/cache/util.py
@@ -16,7 +16,7 @@ def mirror_cache(valid_nodes_iterable, src_cache, trg_cache, eclass_cache=None,
noise=verbose_instance
dead_nodes = {}
- dead_nodes.fromkeys(trg_cache.keys())
+ dead_nodes = dict.fromkeys(trg_cache.keys())
count=0
if not trg_cache.autocommits: