steven-kraft / Wox.Plugin.Rom2Kana

Romaji to Kana Converter plugin for Wox

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Please add support for Python 3

quericy opened this issue · comments

Python 3 renamed the unicode type to str, the old str type has been replaced by bytes:

clipboard.py line 25:

if not isinstance(data, unicode):

replace to:

if not isinstance(data, str):