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
I like to write rules to copy the problematic cell into the message for self.report().
If the problematic code includes unicode, then this results in an error
'ascii' codec can't encode character u'\xf3' in position 104: ordinal not in range(128)
I think this stems from RfLint.format() where it calls self.args.format.format().
But, self.args.format is an ascii string, so when formatting, it can't insert the unicode text into it.
The text was updated successfully, but these errors were encountered:
On Fri, Jul 14, 2017 at 7:21 AM, Nicholas Daley ***@***.***> wrote:
I like to write rules to copy the problematic cell into the message for
self.report().
If the problematic code includes unicode, then this results in an error
'ascii' codec can't encode character u'\xf3' in position 104: ordinal not
in range(128)
I think this stems from RfLint.format() where it calls
self.args.format.format().
But, self.args.format is an ascii string, so when formatting, it can't
insert the unicode text into it.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#47>, or mute the
thread
<https://github.com/notifications/unsubscribe-auth/ABEmYhQ8GWvDoV-zmfnGbQrtg4fGO0H_ks5sN10xgaJpZM4OYMAh>
.
I like to write rules to copy the problematic cell into the message for
self.report()
.If the problematic code includes unicode, then this results in an error
I think this stems from
RfLint.format()
where it callsself.args.format.format()
.But,
self.args.format
is an ascii string, so when formatting, it can't insert the unicode text into it.The text was updated successfully, but these errors were encountered: