Merge branch 'dev' of github.com:hmarr/mongoengine into dev
This commit is contained in:
commit
bfdaae944d
@ -1088,10 +1088,10 @@ class BaseDocument(object):
|
|||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
try:
|
try:
|
||||||
u = unicode(self)
|
u = unicode(self).encode('utf-8')
|
||||||
except (UnicodeEncodeError, UnicodeDecodeError):
|
except (UnicodeEncodeError, UnicodeDecodeError):
|
||||||
u = '[Bad Unicode data]'
|
u = '[Bad Unicode data]'
|
||||||
return u'<%s: %s>' % (self.__class__.__name__, u)
|
return '<%s: %s>' % (self.__class__.__name__, u)
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
if hasattr(self, '__unicode__'):
|
if hasattr(self, '__unicode__'):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user