audit: tweak "remove revision" message clarity.

Reference the revision value so it's more obvious that this does not
refer to e.g. a SCM revision.
This commit is contained in:
Mike McQuaid 2016-08-18 14:49:26 +01:00
parent 8137b80a20
commit e83da4c8e6

View File

@ -644,10 +644,10 @@ class FormulaAuditor
if formula.revision != 0
if formula.stable
if revision_map[formula.stable.version].empty? # check stable spec
problem "revision should be removed"
problem "'revision #{formula.revision}' should be removed"
end
else # head/devel-only formula
problem "revision should be removed"
problem "'revision #{formula.revision}' should be removed"
end
end
end