mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42: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:
parent
7e4bde114e
commit
ce06ec00cc
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class ArcanistPEP8Linter extends ArcanistLinter {
|
||||||
if ($matches[4][0] == 'E') {
|
if ($matches[4][0] == 'E') {
|
||||||
$message->setSeverity(ArcanistLintSeverity::SEVERITY_ERROR);
|
$message->setSeverity(ArcanistLintSeverity::SEVERITY_ERROR);
|
||||||
} else {
|
} else {
|
||||||
$message->setSeveirty(ArcanistLintSeverity::SEVERITY_WARNING);
|
$message->setSeverity(ArcanistLintSeverity::SEVERITY_WARNING);
|
||||||
}
|
}
|
||||||
$this->addLintMessage($message);
|
$this->addLintMessage($message);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue