You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chart = ygal.dot( our stuff )
chart.render(is_unicode=True)
weh
the resulting string contains unicode character '\xa9', the copyright sign, which Windows is unable to handle on Japanese Windows, leading to exception:
UnicodeEncodeError: 'cp932' codec can't encode character '\xa9' ...
Suggest you change it to (C) instead of special character.
in file svg.py line 72 change copyright notice:
line 72 'Generated with pygal %s (%s) Copyright Kozea 2012-2016 on %s' % (
The text was updated successfully, but these errors were encountered:
chart = ygal.dot( our stuff )
chart.render(is_unicode=True)
weh
the resulting string contains unicode character '\xa9', the copyright sign, which Windows is unable to handle on Japanese Windows, leading to exception:
UnicodeEncodeError: 'cp932' codec can't encode character '\xa9' ...
Suggest you change it to (C) instead of special character.
in file svg.py line 72 change copyright notice:
line 72 'Generated with pygal %s (%s) Copyright Kozea 2012-2016 on %s' % (
The text was updated successfully, but these errors were encountered: