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