I used 2to3
to convert a folder of python modules. Everything went smooth, but when I went to run some of them it gave me an error about spaces and tabs. My theory: when 2to3
changes a line it uses tabs and not spaces unlike the rest of the non-changed lines. I was wondering if there was a way to change this.
The error is:
TabError: inconsistent use of tabs and spaces in indentation
The code snippet is difficult to show because a tab is shown equivalent to 4 spaces, but I checked and this was happening.