diff options
-rw-r--r-- | pym/portage/cache/util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/cache/util.py b/pym/portage/cache/util.py index e3f37a168..9fcd4b49b 100644 --- a/pym/portage/cache/util.py +++ b/pym/portage/cache/util.py @@ -112,7 +112,8 @@ def mirror_cache(valid_nodes_iterable, src_cache, trg_cache, eclass_cache=None, # by this time, if it reaches here, the eclass has been validated, and the entry has # been updated/translated (if needs be, for metadata/cache mainly) - try: trg_cache[x] = entry + try: + trg_cache[x] = entry except cache_errors.CacheError, ce: noise.exception(x, ce) del ce |