From: Zac Medico Date: Thu, 19 Mar 2009 21:44:26 +0000 (-0000) Subject: Fix try/except indentation so that 2to3 will recognize it. X-Git-Tag: v2.2_rc27~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=284ba0d3cd79a09a4c4f247f54e9d733b906bec0;p=portage.git Fix try/except indentation so that 2to3 will recognize it. svn path=/main/trunk/; revision=13138 --- 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