summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-19 21:42:25 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-19 21:42:25 +0000
commite9d0c8031b9b8b0d1f03fe1208d13f5f6f097645 (patch)
tree024b2615aca95366aac6bc3f3692cb3220874587 /pym
parent27652753680f076cf0c204ce057779c32931f9f9 (diff)
downloadportage-e9d0c8031b9b8b0d1f03fe1208d13f5f6f097645.tar.gz
portage-e9d0c8031b9b8b0d1f03fe1208d13f5f6f097645.tar.bz2
portage-e9d0c8031b9b8b0d1f03fe1208d13f5f6f097645.zip
Fix try/except indentation so that 2to3 will recognize it.
svn path=/main/trunk/; revision=13137
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/cache/util.py3
1 files changed, 2 insertions, 1 deletions
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