1
0
Fork 0
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:
ealbright 2015-08-19 05:45:46 -07:00 committed by epriestley
parent f9bd6b058f
commit 05aaa1a5a3

View file

@ -82,7 +82,7 @@ final class ArcanistPyLintLinter extends ArcanistExternalLinter {
$options = array(); $options = array();
$options[] = '--reports=no'; $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. // Specify an `--rcfile`, either absolute or relative to the project root.
// Stupidly, the command line args above are overridden by rcfile, so be // Stupidly, the command line args above are overridden by rcfile, so be