Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web plugin (and maybe others as well) has problem with unicode #347

Closed
nortonnorton opened this issue May 3, 2012 · 1 comment
Closed

Comments

@nortonnorton
Copy link

Change:
parser = Title()
try:
parser.feed(text)
to

parser = Title()
text = text.decode('utf-8')
text = text.encode('ascii', 'ignore')
try:
parser.feed(text)

in the Web/plugin.py , and it works.

progval added a commit that referenced this issue May 4, 2012
@progval progval closed this as completed May 4, 2012
@progval
Copy link
Owner

progval commented May 4, 2012

Fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants