I did not install this plugin, but simply doing a basic syntax check in Python 3.8 independently installed on my PC revealed a trivial error occurring at least twice:
Python 2: reg = ur'{}'.format(kfind)
The "ur'" in Python 2 means "unicode raw string". Python 3 is natively unicode.
Search on ur' and change it to r'.
Python 3: reg = r'{}'.format(kfind)
DaltonST
|