From dce7a11b1651f279e1fce185451d3ddc2af38068 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 4 Nov 2006 01:58:18 +0000 Subject: Make sure trg is defined. svn path=/main/trunk/; revision=4925 --- pym/cache/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pym') diff --git a/pym/cache/util.py b/pym/cache/util.py index 5dd9970b9..2bfaa76fb 100644 --- a/pym/cache/util.py +++ b/pym/cache/util.py @@ -36,6 +36,7 @@ def mirror_cache(valid_nodes_iterable, src_cache, trg_cache, eclass_cache=None, del e continue write_it = True + trg = None try: trg = trg_cache[x] if long(trg["_mtime_"]) == long(entry["_mtime_"]) and eclass_cache.is_eclass_data_valid(trg["_eclasses_"]): @@ -43,7 +44,7 @@ def mirror_cache(valid_nodes_iterable, src_cache, trg_cache, eclass_cache=None, except (cache_errors.CacheError, KeyError): pass - if not write_it: + if trg and not write_it: """ We don't want to skip the write unless we're really sure that the existing cache is identical, so don't trust _mtime_ and _eclasses_ alone.""" -- cgit v1.2.3-1-g7c22