Skip to content
Snippets Groups Projects
Commit c99cd9bd authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Clarify that "install X" in comment messages actually refers to a (system) package.

parent 3a5f46d2
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,9 @@ class RequiredToolNotFound(Exception): ...@@ -42,7 +42,9 @@ class RequiredToolNotFound(Exception):
x = self.get_package() x = self.get_package()
if x: if x:
xs.append("Install '{}' to get a better output.".format(x)) xs.append(
"Install the '{}' package to get a better output.".format(x)
)
return " ".join(x for x in xs if x) return " ".join(x for x in xs if x)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment