summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-03-02 21:01:55 +0000
committerZac Medico <zmedico@gentoo.org>2010-03-02 21:01:55 +0000
commit6fcea57db4c5f3546900fdc560843f4fd4d38aa3 (patch)
treee9dd0a2961aa9437904eef01cf7b0a1d6e7aa032 /pym
parentbd6421df746c1fcc00ae945132961eb3ee4763c6 (diff)
downloadportage-6fcea57db4c5f3546900fdc560843f4fd4d38aa3.tar.gz
portage-6fcea57db4c5f3546900fdc560843f4fd4d38aa3.tar.bz2
portage-6fcea57db4c5f3546900fdc560843f4fd4d38aa3.zip
Fix broken dep_expand import from previous commit. (trunk r15467)
svn path=/main/branches/2.1.7/; revision=15676
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/__init__.py b/pym/portage/dbapi/__init__.py
index 54d3877b2..e3e53a432 100644
--- a/pym/portage/dbapi/__init__.py
+++ b/pym/portage/dbapi/__init__.py
@@ -8,7 +8,7 @@ import re
import portage
portage.proxy.lazyimport.lazyimport(globals(),
- 'portage.dbapi.dep_expand:_dep_expand',
+ 'portage.dbapi.dep_expand:dep_expand@_dep_expand',
'portage.dep:match_from_list',
'portage.locks:unlockfile',
'portage.output:colorize',