diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-04-04 04:51:33 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-04-04 04:51:33 +0000 |
commit | 575bfec37668792db977a4dc5f045576c52742db (patch) | |
tree | ebfb16a0826f97b0b0e60ba06d0d6c094b698a64 | |
parent | 7c3ca3064aac2803368e81f576141968e7064bde (diff) | |
download | portage-575bfec37668792db977a4dc5f045576c52742db.tar.gz portage-575bfec37668792db977a4dc5f045576c52742db.tar.bz2 portage-575bfec37668792db977a4dc5f045576c52742db.zip |
Fix a typo.
svn path=/main/trunk/; revision=9700
-rw-r--r-- | pym/_emerge/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index ead6766ab..3fbb54eaa 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -6555,7 +6555,7 @@ def action_depclean(settings, trees, ldpath_mtimes, # Pull in everything that's installed since we don't want # to clean any package if something depends on it. remaining_atoms.extend( - ("="+atom, 'world', runtime) for cpv in vardb.cpv_all()) + ("="+cpv, 'world', runtime) for cpv in vardb.cpv_all()) else: for atom in worldlist: if vardb.match(atom): |