diff options
author | 2011-04-04 13:36:57 +0100 | |
---|---|---|
committer | 2011-04-04 13:36:57 +0100 | |
commit | 4cd184dd41cc756de430499a36972a6824b68f90 (patch) | |
tree | cb135ef5b502b97167cad2c5915fd85f74f8021e /python | |
parent | e1469fa5c597017a79ce62706f579aca35fd3c40 (diff) | |
download | paludis-4cd184dd41cc756de430499a36972a6824b68f90.tar.gz paludis-4cd184dd41cc756de430499a36972a6824b68f90.tar.xz |
Move around KeyConstraint logic
Diffstat (limited to 'python')
-rw-r--r-- | python/dep_spec.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/dep_spec.cc b/python/dep_spec.cc index 6f8c0ec8e..8d30f1e36 100644 --- a/python/dep_spec.cc +++ b/python/dep_spec.cc @@ -305,7 +305,7 @@ PythonPackageDepSpec::operator PackageDepSpec() const { for (auto i(all_key_constraints()->begin()), i_end(all_key_constraints()->end()) ; i != i_end ; ++i) - p.key_constraint((*i)->key(), (*i)->operation(), (*i)->pattern()); + p.key_constraint((*i)->key_type(), (*i)->key(), (*i)->operation(), (*i)->pattern()); } return p.to_package_dep_spec(); |