1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-21 22:32:41 +01:00

arc lint: fix typo in PEP8 linter

Test Plan:
linted!

Reviewed By: jungejason
Reviewers: epriestley, jungejason
CC: aran, jungejason
Differential Revision: 314
This commit is contained in:
Andrew Gallagher 2011-05-19 13:38:18 -07:00
parent 7e4bde114e
commit ce06ec00cc

View file

@ -75,7 +75,7 @@ class ArcanistPEP8Linter extends ArcanistLinter {
if ($matches[4][0] == 'E') {
$message->setSeverity(ArcanistLintSeverity::SEVERITY_ERROR);
} else {
$message->setSeveirty(ArcanistLintSeverity::SEVERITY_WARNING);
$message->setSeverity(ArcanistLintSeverity::SEVERITY_WARNING);
}
$this->addLintMessage($message);
}