s/pythonX/cpythonX/g

This commit is contained in:
Jelmer Vernooij 2021-03-15 20:24:32 +00:00
parent 95c2ed4583
commit ed7238d396

View file

@ -392,8 +392,8 @@ def fix_missing_python_module(error, context):
specs = []
pypy_pkg = get_package_for_python_module(context.apt, error.module, "pypy", specs)
py2_pkg = get_package_for_python_module(context.apt, error.module, "python2", specs)
py3_pkg = get_package_for_python_module(context.apt, error.module, "python3", specs)
py2_pkg = get_package_for_python_module(context.apt, error.module, "cpython2", specs)
py3_pkg = get_package_for_python_module(context.apt, error.module, "cpython3", specs)
extra_build_deps = []
if error.python_version == 2: