diff options
Diffstat (limited to 'src/delivery.c')
-rw-r--r-- | src/delivery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delivery.c b/src/delivery.c index 2b69ec3..524dd0a 100644 --- a/src/delivery.c +++ b/src/delivery.c @@ -1504,7 +1504,7 @@ void delivery_defer_packages(struct Delivery *ctx, int type) { } } - if (DEFER_PIP == type && python_package_exists(PYPI_INDEX_DEFAULT, name, version)) { + if (DEFER_PIP == type && pip_index_provides(PYPI_INDEX_DEFAULT, name, version)) { fprintf(stderr, "(%s present on index %s): ", version, PYPI_INDEX_DEFAULT); ignore_pkg = 0; } else { |