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

coercing to Unicode: need string or buffer, StringUUID found #13

Open
sindresorhus opened this issue Dec 2, 2012 · 1 comment
Open
Labels

Comments

@sindresorhus
Copy link

Why do I need to wrap the field in unicode() to make it usable?

unicode(self.order_id)

If I don't I get:

coercing to Unicode: need string or buffer, StringUUID found

This makes it impossible to use in eg. the modellist without wrapping it in a method.

@fomojola
Copy link

This was actually a significant issue for me when I performed an upgrade. I ended up doing this:

class CustomUUIDField(UUIDField):
def to_python(self, value):
val = super(CustomUUIDField, self).to_python(value)
return str(val)

And then simply using my custom uuid field everywhere instead.

@luto luto added the bug label Nov 5, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants