Re: [PATCH v2 1/7] perf script python: remove mixed indentation

2019-03-06 Thread Arnaldo Carvalho de Melo
Em Fri, Mar 01, 2019 at 05:18:57PM -0800, Tony Jones escreveu: > Remove mixed indentation in Python scripts. Revert to either all > tabs (most common form) or all spaces (4 or 8) depending on what > was the intent of the original commit. This is necessary to > complete Python3 support as it wi

Re: [PATCH v2 1/7] perf script python: remove mixed indentation

2019-03-05 Thread Adrian Hunter
On 2/03/19 3:18 AM, Tony Jones wrote: > Remove mixed indentation in Python scripts. Revert to either all > tabs (most common form) or all spaces (4 or 8) depending on what > was the intent of the original commit. This is necessary to > complete Python3 support as it will flag an error if it en

[PATCH v2 1/7] perf script python: remove mixed indentation

2019-03-01 Thread Tony Jones
Remove mixed indentation in Python scripts. Revert to either all tabs (most common form) or all spaces (4 or 8) depending on what was the intent of the original commit. This is necessary to complete Python3 support as it will flag an error if it encounters mixed indentation. Signed-off-by: T