summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-19 21:44:26 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-19 21:44:26 +0000
commit284ba0d3cd79a09a4c4f247f54e9d733b906bec0 (patch)
treec79a0d19f0c006386fe9793a1fba39d8c950a743 /pym
parente9d0c8031b9b8b0d1f03fe1208d13f5f6f097645 (diff)
downloadportage-284ba0d3cd79a09a4c4f247f54e9d733b906bec0.tar.gz
portage-284ba0d3cd79a09a4c4f247f54e9d733b906bec0.tar.bz2
portage-284ba0d3cd79a09a4c4f247f54e9d733b906bec0.zip
Fix try/except indentation so that 2to3 will recognize it.
svn path=/main/trunk/; revision=13138
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 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