View Single Post
Old 09-28-2020, 10:15 AM   #2
DaltonST
Deviser
DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.DaltonST ought to be getting tired of karma fortunes by now.
 
DaltonST's Avatar
 
Posts: 2,265
Karma: 2090983
Join Date: Aug 2013
Location: Texas
Device: none
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
DaltonST is offline   Reply With Quote