In plugout_files() the constant u'usersys/charsets' is used.
On windows this needs to be u'usersys\\charsets' or else
files2return.index(charset) always fails and the charset files are always
included in the plugin.
Solution is to use os.path.join(u'usersys',u'charsets')
(note: attached pluglib.py contains other changes too; plugin filtering, key
fields first in botsindex)
Original issue reported on code.google.com by mjg1964 on 12 Feb 2015 at 11:26
Original issue reported on code.google.com by
mjg1964
on 12 Feb 2015 at 11:26Attachments: