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
paolog@matanui:/tmp/qq$ urubu build
Traceback (most recent call last):
...
File "/usr/local/lib/python2.7/dist-packages/urubu/md_extensions.py", line 110, in handleMatch
warn(undef_ref_warning.format(ref, this['fn']), UrubuWarning)
File "/usr/lib/python2.7/warnings.py", line 29, in _show_warning
file.write(formatwarning(message, category, filename, lineno, line))
File "/usr/lib/python2.7/warnings.py", line 38, in formatwarning
s = "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message)
UnicodeEncodeError: 'ascii' codec can't encode character u'\xa9' in position 20: ordinal not in range(128)
This makes the actual source of the problem difficult to find. I believe you should use string.text.encode('ascii', 'ignore') somewhere.
BTW great tool thanks for sharing.
The text was updated successfully, but these errors were encountered:
We were migrating some markdown from a wiki. There are stray references we are in the process of converting manually. One of them (
[[kkkk©|kkkk]]
) caused an unrecoverable UnicodeEncodeError:This makes the actual source of the problem difficult to find. I believe you should use
string.text.encode('ascii', 'ignore')
somewhere.BTW great tool thanks for sharing.
The text was updated successfully, but these errors were encountered: