projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7c38e75
)
Fix scope issue that could cause 'retval' variable to be undefined.
author
Zac Medico
<zmedico@gentoo.org>
Fri, 6 Aug 2010 06:35:33 +0000
(23:35 -0700)
committer
Zac Medico
<zmedico@gentoo.org>
Fri, 6 Aug 2010 06:35:33 +0000
(23:35 -0700)
pym/_emerge/PackageUninstall.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/PackageUninstall.py
b/pym/_emerge/PackageUninstall.py
index 58a1717a230fa05d42e07a452cbec8290a468b65..6f528663a2b0dc6bdf9b0f92233917258cabd8bf 100644
(file)
--- a/
pym/_emerge/PackageUninstall.py
+++ b/
pym/_emerge/PackageUninstall.py
@@
-27,8
+27,8
@@
class PackageUninstall(AsynchronousTask):
else:
self.returncode = os.EX_OK
- if retval == 1:
- self.world_atom(self.pkg)
+
if retval == 1:
+
self.world_atom(self.pkg)
self.wait()