projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9d0c80
)
Fix try/except indentation so that 2to3 will recognize it.
author
Zac Medico
<zmedico@gentoo.org>
Thu, 19 Mar 2009 21:44:26 +0000
(21:44 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 19 Mar 2009 21:44:26 +0000
(21:44 -0000)
svn path=/main/trunk/; revision=13138
pym/portage/cache/util.py
patch
|
blob
|
history
diff --git
a/pym/portage/cache/util.py
b/pym/portage/cache/util.py
index e3f37a168a19ebedd7e934c4d88e739364d2361d..9fcd4b49b1a7df8379438905c2fe4947a613e4e8 100644
(file)
--- 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