Fix type name.
This commit is contained in:
parent
85575ad526
commit
eec4b0a7d5
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ def problem_to_upstream_requirement(problem): # noqa: C901
|
||||||
return CertificateAuthorityRequirement(problem.url)
|
return CertificateAuthorityRequirement(problem.url)
|
||||||
elif isinstance(problem, MissingSetupPyCommand):
|
elif isinstance(problem, MissingSetupPyCommand):
|
||||||
if problem.command == "test":
|
if problem.command == "test":
|
||||||
return MissingPythonDistribution("setuptools")
|
return PythonPackageRequirement("setuptools")
|
||||||
return None
|
return None
|
||||||
elif isinstance(problem, MissingGnomeCommonDependency):
|
elif isinstance(problem, MissingGnomeCommonDependency):
|
||||||
if problem.package == "glib-gettext":
|
if problem.package == "glib-gettext":
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue