<div dir="ltr">Hi Matthew! Thanks for the reporting!<br><br>I fixed the issue and pushed the fix to the GitHub. In order to make your code work, you need to place the `u` prefix both before the string passed to the filter() function and before the unicode literal inside the string:<br><br><span style="font-size:12.8px">    models.Order.select().filter(</span><span style="font-size:12.8px">u'u"ö" in o.user.email')</span><br><br>With the provided fix, this should work fine.<br><br><br>Regards,<br>Alexander<br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 17, 2015 at 1:39 AM, Matthew Bell <span dir="ltr"><<a href="mailto:matthewrobertbell@gmail.com" target="_blank">matthewrobertbell@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>Hello,<br><br></div>A query like this works fine:<br><br>models.Order.select().filter('"x" in o.user.email')<br><br></div>However, using an accented character, I have difficulties:<br><br>models.Order.select().filter('"ö" in o.user.email')<br>ExprEvalError: '\xc3\xb6' in o.user.email raises NameError: name 'o' is not defined<br><br></div>or<br><br>models.Order.select().filter(u'"ö" in o.user.email')<br>UnicodeEncodeError: 'ascii' codec can't encode character u'\xf6' in position 2: ordinal not in range(128)<br clear="all"><div><div><div><div><br></div><div>This happens in SQLite and postgres. Am I doing something wrong?<br><br></div><div>Thanks<span class="HOEnZb"><font color="#888888"><br></font></span></div><span class="HOEnZb"><font color="#888888"><div>-- <br><div>Regards,<br><br>Matthew Bell<br></div>
</div></font></span></div></div></div></div>
<br>_______________________________________________<br>
ponyorm-list mailing list<br>
<a href="mailto:ponyorm-list@ponyorm.org">ponyorm-list@ponyorm.org</a><br>
<a href="/ponyorm-list" rel="noreferrer" target="_blank">/ponyorm-list</a><br>
<br></blockquote></div><br></div>