mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
ArcanistPyLintLinter fix to getMandatoryFlags msg-template
Summary: Removed excess quotations on the `--msg-template` option as it was interfering with the string-int coercion Test Plan: Unsure Reviewers: joshuaspence, epriestley, #blessed_reviewers Reviewed By: joshuaspence, epriestley, #blessed_reviewers Subscribers: joshuaspence, e-m-albright, Korvin Maniphest Tasks: T9214 Differential Revision: https://secure.phabricator.com/D13931
This commit is contained in:
parent
f9bd6b058f
commit
05aaa1a5a3
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ final class ArcanistPyLintLinter extends ArcanistExternalLinter {
|
|||
$options = array();
|
||||
|
||||
$options[] = '--reports=no';
|
||||
$options[] = '--msg-template="{line}|{column}|{msg_id}|{symbol}|{msg}"';
|
||||
$options[] = '--msg-template={line}|{column}|{msg_id}|{symbol}|{msg}';
|
||||
|
||||
// Specify an `--rcfile`, either absolute or relative to the project root.
|
||||
// Stupidly, the command line args above are overridden by rcfile, so be
|
||||
|
|
Loading…
Reference in a new issue