dlanger / inlinestyler

A simple CSS inliner for generating HTML email messages.
http://pypi.python.org/pypi/inlinestyler
BSD 3-Clause "New" or "Revised" License
114 stars 23 forks source link

modify for python 3 bytes support #11

Closed tompipen closed 9 years ago

tompipen commented 9 years ago

str JOIN errors when get CSS file content, the reason for the urlopen achieved are bytes instead str. So I made some changes, hoping to help.

dlanger commented 9 years ago

@tompipen I swapped out urllib for requests in aafbb4f2c468003e1910aeadc233fa596df70e37, which I think does the right thing automatically around this.

Can you take a look with the test case that had you make this PR? If that didn't fix it, I'll be happy to merge this one in too.

tompipen commented 9 years ago

OK

tompipen commented 9 years ago

YES! aafbb4f fix it! thank you!