summaryrefslogtreecommitdiffstats
path: root/pym/portage/dbapi/dep_expand.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-06-05 00:23:33 -0700
committerZac Medico <zmedico@gentoo.org>2011-06-05 00:23:33 -0700
commit5bf2b111e23a60b60d307a56a833575c3d514125 (patch)
tree2b6bea71e8187875ab3b0116c37206e5c762698f /pym/portage/dbapi/dep_expand.py
parente390b1d43556d665ca3356317ab843bd68cbfe14 (diff)
downloadportage-5bf2b111e23a60b60d307a56a833575c3d514125.tar.gz
portage-5bf2b111e23a60b60d307a56a833575c3d514125.tar.bz2
portage-5bf2b111e23a60b60d307a56a833575c3d514125.zip
dep_expand: fix orig_dep for previous commit
Diffstat (limited to 'pym/portage/dbapi/dep_expand.py')
-rw-r--r--pym/portage/dbapi/dep_expand.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/dep_expand.py b/pym/portage/dbapi/dep_expand.py
index afd8b4f13..ac8ccf4b3 100644
--- a/pym/portage/dbapi/dep_expand.py
+++ b/pym/portage/dbapi/dep_expand.py
@@ -22,7 +22,7 @@ def dep_expand(mydep, mydb=None, use_cache=1, settings=None):
return mydep
if mydep[0] == "*":
mydep = mydep[1:]
- mydep = orig_dep
+ orig_dep = mydep
has_cat = '/' in orig_dep
if not has_cat:
alphanum = re.search(r'\w', orig_dep)