From: Zac Medico Date: Thu, 19 Mar 2009 21:42:25 +0000 (-0000) Subject: Fix try/except indentation so that 2to3 will recognize it. X-Git-Tag: v2.2_rc27~19 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e9d0c8031b9b8b0d1f03fe1208d13f5f6f097645;p=portage.git Fix try/except indentation so that 2to3 will recognize it. svn path=/main/trunk/; revision=13137 --- diff --git a/pym/portage/cache/util.py b/pym/portage/cache/util.py index e152f5081..e3f37a168 100644 --- a/pym/portage/cache/util.py +++ b/pym/portage/cache/util.py @@ -29,7 +29,8 @@ def mirror_cache(valid_nodes_iterable, src_cache, trg_cache, eclass_cache=None, # print "processing x=",x count+=1 dead_nodes.discard(x) - try: entry = src_cache[x] + try: + entry = src_cache[x] except KeyError, e: noise.missing_entry(x) del e