Closed wwoods closed 8 years ago
In Python 3, from iconfonts import * will not work. It must be from .iconfonts import *. I believe this is also compatible with Python 2.7.
from iconfonts import *
from .iconfonts import *
Thank you!. I'd merge it (I'm the author) but strangely I currently don't have write access to this repo :open_mouth: . I'll request it.
Thank you @wwoods
Great, thanks!
In Python 3,
from iconfonts import *
will not work. It must befrom .iconfonts import *
. I believe this is also compatible with Python 2.7.