Commit c99cd9bd authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

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

parent 3a5f46d2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -42,7 +42,9 @@ class RequiredToolNotFound(Exception):

        x = self.get_package()
        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)