The 'parseable' output format of pylint is deprecated. This patch updates the option from 'output-format=parseable' into equivalent output format by using 'msg-template'.
Signed-off-by: IWASE Yusuke <[email protected]> --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index f4e55be..3b01bee 100644 --- a/.pylintrc +++ b/.pylintrc @@ -10,6 +10,6 @@ # W0614: Unused import %s from wildcard import # R0801: Similar lines in %s files disable=C0111,W0511,W0142,E0602,C0103,E1101,R0903,W0614,R0801 -output-format=parseable +msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} reports=yes files-output=no -- 1.9.1 ------------------------------------------------------------------------------ Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month Monitor end-to-end web transactions and take corrective actions now Troubleshoot faster and improve end-user experience. Signup Now! http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
