diff options
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(); |