You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Python3, strings by default are Unicode, not ASCII. Therefore, the output of subprocess commands is of the "bytes", rather than "str", type. This makes re.search/match crash inside the function.
The text was updated successfully, but these errors were encountered:
In Python3, strings by default are Unicode, not ASCII. Therefore, the output of subprocess commands is of the "bytes", rather than "str", type. This makes re.search/match crash inside the function.
The text was updated successfully, but these errors were encountered: